Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: client/dom/generated/src/frog/SVGFEDiffuseLightingElement.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class SVGFEDiffuseLightingElementJs extends SVGElementJs implements SVGFEDiffuse LightingElement native "*SVGFEDiffuseLightingElement" { 2 class _SVGFEDiffuseLightingElementJs extends _SVGElementJs implements SVGFEDiffu seLightingElement native "*SVGFEDiffuseLightingElement" {
3 3
4 SVGAnimatedNumberJs get diffuseConstant() native "return this.diffuseConstant; "; 4 _SVGAnimatedNumberJs get diffuseConstant() native "return this.diffuseConstant ;";
5 5
6 SVGAnimatedStringJs get in1() native "return this.in1;"; 6 _SVGAnimatedStringJs get in1() native "return this.in1;";
7 7
8 SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLeng thX;"; 8 _SVGAnimatedNumberJs get kernelUnitLengthX() native "return this.kernelUnitLen gthX;";
9 9
10 SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLeng thY;"; 10 _SVGAnimatedNumberJs get kernelUnitLengthY() native "return this.kernelUnitLen gthY;";
11 11
12 SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;"; 12 _SVGAnimatedNumberJs get surfaceScale() native "return this.surfaceScale;";
13 13
14 // From SVGFilterPrimitiveStandardAttributes 14 // From SVGFilterPrimitiveStandardAttributes
15 15
16 SVGAnimatedLengthJs get height() native "return this.height;"; 16 _SVGAnimatedLengthJs get height() native "return this.height;";
17 17
18 SVGAnimatedStringJs get result() native "return this.result;"; 18 _SVGAnimatedStringJs get result() native "return this.result;";
19 19
20 SVGAnimatedLengthJs get width() native "return this.width;"; 20 _SVGAnimatedLengthJs get width() native "return this.width;";
21 21
22 SVGAnimatedLengthJs get x() native "return this.x;"; 22 _SVGAnimatedLengthJs get x() native "return this.x;";
23 23
24 SVGAnimatedLengthJs get y() native "return this.y;"; 24 _SVGAnimatedLengthJs get y() native "return this.y;";
25 25
26 // From SVGStylable 26 // From SVGStylable
27 27
28 SVGAnimatedStringJs get className() native "return this.className;"; 28 _SVGAnimatedStringJs get className() native "return this.className;";
29 29
30 CSSStyleDeclarationJs get style() native "return this.style;"; 30 _CSSStyleDeclarationJs get style() native "return this.style;";
31 31
32 CSSValueJs getPresentationAttribute(String name) native; 32 _CSSValueJs getPresentationAttribute(String name) native;
33 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698