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

Side by Side Diff: client/dom/generated/src/frog/SVGFEDisplacementMapElement.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 _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl acementMapElement native "*SVGFEDisplacementMapElement" { 2 class _SVGFEDisplacementMapElementJs extends _SVGElementJs implements SVGFEDispl acementMapElement native "*SVGFEDisplacementMapElement" {
3 3
4 static final int SVG_CHANNEL_A = 4; 4 static final int SVG_CHANNEL_A = 4;
5 5
6 static final int SVG_CHANNEL_B = 3; 6 static final int SVG_CHANNEL_B = 3;
7 7
8 static final int SVG_CHANNEL_G = 2; 8 static final int SVG_CHANNEL_G = 2;
9 9
10 static final int SVG_CHANNEL_R = 1; 10 static final int SVG_CHANNEL_R = 1;
11 11
12 static final int SVG_CHANNEL_UNKNOWN = 0; 12 static final int SVG_CHANNEL_UNKNOWN = 0;
13 13
14 _SVGAnimatedStringJs get in1() native "return this.in1;"; 14 final _SVGAnimatedStringJs in1;
15 15
16 _SVGAnimatedStringJs get in2() native "return this.in2;"; 16 final _SVGAnimatedStringJs in2;
17 17
18 _SVGAnimatedNumberJs get scale() native "return this.scale;"; 18 final _SVGAnimatedNumberJs scale;
19 19
20 _SVGAnimatedEnumerationJs get xChannelSelector() native "return this.xChannelS elector;"; 20 final _SVGAnimatedEnumerationJs xChannelSelector;
21 21
22 _SVGAnimatedEnumerationJs get yChannelSelector() native "return this.yChannelS elector;"; 22 final _SVGAnimatedEnumerationJs yChannelSelector;
23 23
24 // From SVGFilterPrimitiveStandardAttributes 24 // From SVGFilterPrimitiveStandardAttributes
25 25
26 _SVGAnimatedLengthJs get height() native "return this.height;"; 26 final _SVGAnimatedLengthJs height;
27 27
28 _SVGAnimatedStringJs get result() native "return this.result;"; 28 final _SVGAnimatedStringJs result;
29 29
30 _SVGAnimatedLengthJs get width() native "return this.width;"; 30 final _SVGAnimatedLengthJs width;
31 31
32 _SVGAnimatedLengthJs get x() native "return this.x;"; 32 final _SVGAnimatedLengthJs x;
33 33
34 _SVGAnimatedLengthJs get y() native "return this.y;"; 34 final _SVGAnimatedLengthJs y;
35 35
36 // From SVGStylable 36 // From SVGStylable
37 37
38 _SVGAnimatedStringJs get className() native "return this.className;"; 38 final _SVGAnimatedStringJs className;
39 39
40 _CSSStyleDeclarationJs get style() native "return this.style;"; 40 final _CSSStyleDeclarationJs style;
41 41
42 _CSSValueJs getPresentationAttribute(String name) native; 42 _CSSValueJs getPresentationAttribute(String name) native;
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698