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

Side by Side Diff: client/dom/generated/src/frog/SVGFEImageElement.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 SVGFEImageElement extends SVGElement native "*SVGFEImageElement" { 2 class SVGFEImageElementJS extends SVGElementJS implements SVGFEImageElement nati ve "*SVGFEImageElement" {
3 3
4 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() native "return this.p reserveAspectRatio;"; 4 SVGAnimatedPreserveAspectRatioJS get preserveAspectRatio() native "return this .preserveAspectRatio;";
5 5
6 // From SVGURIReference 6 // From SVGURIReference
7 7
8 SVGAnimatedString get href() native "return this.href;"; 8 SVGAnimatedStringJS get href() native "return this.href;";
9 9
10 // From SVGLangSpace 10 // From SVGLangSpace
11 11
12 String get xmllang() native "return this.xmllang;"; 12 String get xmllang() native "return this.xmllang;";
13 13
14 void set xmllang(String value) native "this.xmllang = value;"; 14 void set xmllang(String value) native "this.xmllang = value;";
15 15
16 String get xmlspace() native "return this.xmlspace;"; 16 String get xmlspace() native "return this.xmlspace;";
17 17
18 void set xmlspace(String value) native "this.xmlspace = value;"; 18 void set xmlspace(String value) native "this.xmlspace = value;";
19 19
20 // From SVGExternalResourcesRequired 20 // From SVGExternalResourcesRequired
21 21
22 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;"; 22 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
23 23
24 // From SVGFilterPrimitiveStandardAttributes 24 // From SVGFilterPrimitiveStandardAttributes
25 25
26 SVGAnimatedLength get height() native "return this.height;"; 26 SVGAnimatedLengthJS get height() native "return this.height;";
27 27
28 SVGAnimatedString get result() native "return this.result;"; 28 SVGAnimatedStringJS get result() native "return this.result;";
29 29
30 SVGAnimatedLength get width() native "return this.width;"; 30 SVGAnimatedLengthJS get width() native "return this.width;";
31 31
32 SVGAnimatedLength get x() native "return this.x;"; 32 SVGAnimatedLengthJS get x() native "return this.x;";
33 33
34 SVGAnimatedLength get y() native "return this.y;"; 34 SVGAnimatedLengthJS get y() native "return this.y;";
35 35
36 // From SVGStylable 36 // From SVGStylable
37 37
38 SVGAnimatedString get className() native "return this.className;"; 38 SVGAnimatedStringJS get className() native "return this.className;";
39 39
40 CSSStyleDeclaration get style() native "return this.style;"; 40 CSSStyleDeclarationJS get style() native "return this.style;";
41 41
42 CSSValue getPresentationAttribute(String name) native; 42 CSSValueJS getPresentationAttribute(String name) native;
43 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGFEGaussianBlurElement.dart ('k') | client/dom/generated/src/frog/SVGFEMergeElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698