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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 SVGFECompositeElementJS extends SVGElementJS implements SVGFECompositeElem ent 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 get in1() native "return this.in1;"; 18 SVGAnimatedStringJS get in1() native "return this.in1;";
19 19
20 SVGAnimatedString get in2() native "return this.in2;"; 20 SVGAnimatedStringJS get in2() native "return this.in2;";
21 21
22 SVGAnimatedNumber get k1() native "return this.k1;"; 22 SVGAnimatedNumberJS get k1() native "return this.k1;";
23 23
24 SVGAnimatedNumber get k2() native "return this.k2;"; 24 SVGAnimatedNumberJS get k2() native "return this.k2;";
25 25
26 SVGAnimatedNumber get k3() native "return this.k3;"; 26 SVGAnimatedNumberJS get k3() native "return this.k3;";
27 27
28 SVGAnimatedNumber get k4() native "return this.k4;"; 28 SVGAnimatedNumberJS get k4() native "return this.k4;";
29 29
30 SVGAnimatedEnumeration get operator() native "return this.operator;"; 30 SVGAnimatedEnumerationJS get operator() native "return this.operator;";
31 31
32 // From SVGFilterPrimitiveStandardAttributes 32 // From SVGFilterPrimitiveStandardAttributes
33 33
34 SVGAnimatedLength get height() native "return this.height;"; 34 SVGAnimatedLengthJS get height() native "return this.height;";
35 35
36 SVGAnimatedString get result() native "return this.result;"; 36 SVGAnimatedStringJS get result() native "return this.result;";
37 37
38 SVGAnimatedLength get width() native "return this.width;"; 38 SVGAnimatedLengthJS get width() native "return this.width;";
39 39
40 SVGAnimatedLength get x() native "return this.x;"; 40 SVGAnimatedLengthJS get x() native "return this.x;";
41 41
42 SVGAnimatedLength get y() native "return this.y;"; 42 SVGAnimatedLengthJS get y() native "return this.y;";
43 43
44 // From SVGStylable 44 // From SVGStylable
45 45
46 SVGAnimatedString get className() native "return this.className;"; 46 SVGAnimatedStringJS get className() native "return this.className;";
47 47
48 CSSStyleDeclaration get style() native "return this.style;"; 48 CSSStyleDeclarationJS get style() native "return this.style;";
49 49
50 CSSValue getPresentationAttribute(String name) native; 50 CSSValueJS getPresentationAttribute(String name) native;
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698