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

Side by Side Diff: client/dom/generated/src/frog/SVGFECompositeElement.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 SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { 2 class SVGFECompositeElement extends SVGElement 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 SVGAnimatedString in1; 18 SVGAnimatedString get in1() native "return this.in1;";
19 19
20 SVGAnimatedString in2; 20 SVGAnimatedString get in2() native "return this.in2;";
21 21
22 SVGAnimatedNumber k1; 22 SVGAnimatedNumber get k1() native "return this.k1;";
23 23
24 SVGAnimatedNumber k2; 24 SVGAnimatedNumber get k2() native "return this.k2;";
25 25
26 SVGAnimatedNumber k3; 26 SVGAnimatedNumber get k3() native "return this.k3;";
27 27
28 SVGAnimatedNumber k4; 28 SVGAnimatedNumber get k4() native "return this.k4;";
29 29
30 SVGAnimatedEnumeration operator; 30 SVGAnimatedEnumeration get operator() native "return this.operator;";
31 31
32 // From SVGFilterPrimitiveStandardAttributes 32 // From SVGFilterPrimitiveStandardAttributes
33 33
34 SVGAnimatedLength height; 34 SVGAnimatedLength get height() native "return this.height;";
35 35
36 SVGAnimatedString result; 36 SVGAnimatedString get result() native "return this.result;";
37 37
38 SVGAnimatedLength width; 38 SVGAnimatedLength get width() native "return this.width;";
39 39
40 SVGAnimatedLength x; 40 SVGAnimatedLength get x() native "return this.x;";
41 41
42 SVGAnimatedLength y; 42 SVGAnimatedLength get y() native "return this.y;";
43 43
44 // From SVGStylable 44 // From SVGStylable
45 45
46 SVGAnimatedString className; 46 SVGAnimatedString get className() native "return this.className;";
47 47
48 CSSStyleDeclaration style; 48 CSSStyleDeclaration get style() native "return this.style;";
49 49
50 CSSValue getPresentationAttribute(String name) native; 50 CSSValue getPresentationAttribute(String name) native;
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698