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

Side by Side Diff: client/dom/generated/src/frog/SVGFETurbulenceElement.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 SVGFETurbulenceElementJs extends SVGElementJs implements SVGFETurbulenceEl ement native "*SVGFETurbulenceElement" { 2 class _SVGFETurbulenceElementJs extends _SVGElementJs implements SVGFETurbulence Element native "*SVGFETurbulenceElement" {
3 3
4 static final int SVG_STITCHTYPE_NOSTITCH = 2; 4 static final int SVG_STITCHTYPE_NOSTITCH = 2;
5 5
6 static final int SVG_STITCHTYPE_STITCH = 1; 6 static final int SVG_STITCHTYPE_STITCH = 1;
7 7
8 static final int SVG_STITCHTYPE_UNKNOWN = 0; 8 static final int SVG_STITCHTYPE_UNKNOWN = 0;
9 9
10 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 10 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
11 11
12 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 12 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
13 13
14 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 14 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
15 15
16 SVGAnimatedNumberJs get baseFrequencyX() native "return this.baseFrequencyX;"; 16 _SVGAnimatedNumberJs get baseFrequencyX() native "return this.baseFrequencyX;" ;
17 17
18 SVGAnimatedNumberJs get baseFrequencyY() native "return this.baseFrequencyY;"; 18 _SVGAnimatedNumberJs get baseFrequencyY() native "return this.baseFrequencyY;" ;
19 19
20 SVGAnimatedIntegerJs get numOctaves() native "return this.numOctaves;"; 20 _SVGAnimatedIntegerJs get numOctaves() native "return this.numOctaves;";
21 21
22 SVGAnimatedNumberJs get seed() native "return this.seed;"; 22 _SVGAnimatedNumberJs get seed() native "return this.seed;";
23 23
24 SVGAnimatedEnumerationJs get stitchTiles() native "return this.stitchTiles;"; 24 _SVGAnimatedEnumerationJs get stitchTiles() native "return this.stitchTiles;";
25 25
26 SVGAnimatedEnumerationJs get type() native "return this.type;"; 26 _SVGAnimatedEnumerationJs get type() native "return this.type;";
27 27
28 // From SVGFilterPrimitiveStandardAttributes 28 // From SVGFilterPrimitiveStandardAttributes
29 29
30 SVGAnimatedLengthJs get height() native "return this.height;"; 30 _SVGAnimatedLengthJs get height() native "return this.height;";
31 31
32 SVGAnimatedStringJs get result() native "return this.result;"; 32 _SVGAnimatedStringJs get result() native "return this.result;";
33 33
34 SVGAnimatedLengthJs get width() native "return this.width;"; 34 _SVGAnimatedLengthJs get width() native "return this.width;";
35 35
36 SVGAnimatedLengthJs get x() native "return this.x;"; 36 _SVGAnimatedLengthJs get x() native "return this.x;";
37 37
38 SVGAnimatedLengthJs get y() native "return this.y;"; 38 _SVGAnimatedLengthJs get y() native "return this.y;";
39 39
40 // From SVGStylable 40 // From SVGStylable
41 41
42 SVGAnimatedStringJs get className() native "return this.className;"; 42 _SVGAnimatedStringJs get className() native "return this.className;";
43 43
44 CSSStyleDeclarationJs get style() native "return this.style;"; 44 _CSSStyleDeclarationJs get style() native "return this.style;";
45 45
46 CSSValueJs getPresentationAttribute(String name) native; 46 _CSSValueJs getPresentationAttribute(String name) native;
47 } 47 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGFETileElement.dart ('k') | client/dom/generated/src/frog/SVGFilterElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698