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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM apElement" { 2 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM apElement" {
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 SVGAnimatedString in1; 14 SVGAnimatedString get in1() native "return this.in1;";
15 15
16 SVGAnimatedString in2; 16 SVGAnimatedString get in2() native "return this.in2;";
17 17
18 SVGAnimatedNumber scale; 18 SVGAnimatedNumber get scale() native "return this.scale;";
19 19
20 SVGAnimatedEnumeration xChannelSelector; 20 SVGAnimatedEnumeration get xChannelSelector() native "return this.xChannelSele ctor;";
21 21
22 SVGAnimatedEnumeration yChannelSelector; 22 SVGAnimatedEnumeration get yChannelSelector() native "return this.yChannelSele ctor;";
23 23
24 // From SVGFilterPrimitiveStandardAttributes 24 // From SVGFilterPrimitiveStandardAttributes
25 25
26 SVGAnimatedLength height; 26 SVGAnimatedLength get height() native "return this.height;";
27 27
28 SVGAnimatedString result; 28 SVGAnimatedString get result() native "return this.result;";
29 29
30 SVGAnimatedLength width; 30 SVGAnimatedLength get width() native "return this.width;";
31 31
32 SVGAnimatedLength x; 32 SVGAnimatedLength get x() native "return this.x;";
33 33
34 SVGAnimatedLength y; 34 SVGAnimatedLength get y() native "return this.y;";
35 35
36 // From SVGStylable 36 // From SVGStylable
37 37
38 SVGAnimatedString className; 38 SVGAnimatedString get className() native "return this.className;";
39 39
40 CSSStyleDeclaration style; 40 CSSStyleDeclaration get style() native "return this.style;";
41 41
42 CSSValue getPresentationAttribute(String name) native; 42 CSSValue getPresentationAttribute(String name) native;
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698