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

Side by Side Diff: client/dom/generated/src/frog/SVGFEBlendElement.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 SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" { 2 class SVGFEBlendElementJS extends SVGElementJS implements SVGFEBlendElement nati ve "*SVGFEBlendElement" {
3 3
4 static final int SVG_FEBLEND_MODE_DARKEN = 4; 4 static final int SVG_FEBLEND_MODE_DARKEN = 4;
5 5
6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; 6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5;
7 7
8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; 8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2;
9 9
10 static final int SVG_FEBLEND_MODE_NORMAL = 1; 10 static final int SVG_FEBLEND_MODE_NORMAL = 1;
11 11
12 static final int SVG_FEBLEND_MODE_SCREEN = 3; 12 static final int SVG_FEBLEND_MODE_SCREEN = 3;
13 13
14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; 14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0;
15 15
16 SVGAnimatedString get in1() native "return this.in1;"; 16 SVGAnimatedStringJS get in1() native "return this.in1;";
17 17
18 SVGAnimatedString get in2() native "return this.in2;"; 18 SVGAnimatedStringJS get in2() native "return this.in2;";
19 19
20 SVGAnimatedEnumeration get mode() native "return this.mode;"; 20 SVGAnimatedEnumerationJS get mode() native "return this.mode;";
21 21
22 // From SVGFilterPrimitiveStandardAttributes 22 // From SVGFilterPrimitiveStandardAttributes
23 23
24 SVGAnimatedLength get height() native "return this.height;"; 24 SVGAnimatedLengthJS get height() native "return this.height;";
25 25
26 SVGAnimatedString get result() native "return this.result;"; 26 SVGAnimatedStringJS get result() native "return this.result;";
27 27
28 SVGAnimatedLength get width() native "return this.width;"; 28 SVGAnimatedLengthJS get width() native "return this.width;";
29 29
30 SVGAnimatedLength get x() native "return this.x;"; 30 SVGAnimatedLengthJS get x() native "return this.x;";
31 31
32 SVGAnimatedLength get y() native "return this.y;"; 32 SVGAnimatedLengthJS get y() native "return this.y;";
33 33
34 // From SVGStylable 34 // From SVGStylable
35 35
36 SVGAnimatedString get className() native "return this.className;"; 36 SVGAnimatedStringJS get className() native "return this.className;";
37 37
38 CSSStyleDeclaration get style() native "return this.style;"; 38 CSSStyleDeclarationJS get style() native "return this.style;";
39 39
40 CSSValue getPresentationAttribute(String name) native; 40 CSSValueJS getPresentationAttribute(String name) native;
41 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698