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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 SVGFETurbulenceEl ement 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