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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl ement native "*SVGFECompositeElement" { 2 class _SVGFECompositeElementJs extends _SVGElementJs implements SVGFECompositeEl ement native "*SVGFECompositeElement" {
3 3
4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
5 5
6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
7 7
8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; 8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2;
9 9
10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
11 11
12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
13 13
14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
15 15
16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
17 17
18 _SVGAnimatedStringJs get in1() native "return this.in1;"; 18 final _SVGAnimatedStringJs in1;
19 19
20 _SVGAnimatedStringJs get in2() native "return this.in2;"; 20 final _SVGAnimatedStringJs in2;
21 21
22 _SVGAnimatedNumberJs get k1() native "return this.k1;"; 22 final _SVGAnimatedNumberJs k1;
23 23
24 _SVGAnimatedNumberJs get k2() native "return this.k2;"; 24 final _SVGAnimatedNumberJs k2;
25 25
26 _SVGAnimatedNumberJs get k3() native "return this.k3;"; 26 final _SVGAnimatedNumberJs k3;
27 27
28 _SVGAnimatedNumberJs get k4() native "return this.k4;"; 28 final _SVGAnimatedNumberJs k4;
29 29
30 _SVGAnimatedEnumerationJs get operator() native "return this.operator;"; 30 final _SVGAnimatedEnumerationJs operator;
31 31
32 // From SVGFilterPrimitiveStandardAttributes 32 // From SVGFilterPrimitiveStandardAttributes
33 33
34 _SVGAnimatedLengthJs get height() native "return this.height;"; 34 final _SVGAnimatedLengthJs height;
35 35
36 _SVGAnimatedStringJs get result() native "return this.result;"; 36 final _SVGAnimatedStringJs result;
37 37
38 _SVGAnimatedLengthJs get width() native "return this.width;"; 38 final _SVGAnimatedLengthJs width;
39 39
40 _SVGAnimatedLengthJs get x() native "return this.x;"; 40 final _SVGAnimatedLengthJs x;
41 41
42 _SVGAnimatedLengthJs get y() native "return this.y;"; 42 final _SVGAnimatedLengthJs y;
43 43
44 // From SVGStylable 44 // From SVGStylable
45 45
46 _SVGAnimatedStringJs get className() native "return this.className;"; 46 final _SVGAnimatedStringJs className;
47 47
48 _CSSStyleDeclarationJs get style() native "return this.style;"; 48 final _CSSStyleDeclarationJs style;
49 49
50 _CSSValueJs getPresentationAttribute(String name) native; 50 _CSSValueJs getPresentationAttribute(String name) native;
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698