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

Side by Side Diff: client/dom/generated/src/frog/SVGUseElement.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 SVGUseElement extends SVGElement native "*SVGUseElement" { 2 class SVGUseElementJS extends SVGElementJS implements SVGUseElement native "*SVG UseElement" {
3 3
4 SVGElementInstance get animatedInstanceRoot() native "return this.animatedInst anceRoot;"; 4 SVGElementInstanceJS get animatedInstanceRoot() native "return this.animatedIn stanceRoot;";
5 5
6 SVGAnimatedLength get height() native "return this.height;"; 6 SVGAnimatedLengthJS get height() native "return this.height;";
7 7
8 SVGElementInstance get instanceRoot() native "return this.instanceRoot;"; 8 SVGElementInstanceJS get instanceRoot() native "return this.instanceRoot;";
9 9
10 SVGAnimatedLength get width() native "return this.width;"; 10 SVGAnimatedLengthJS get width() native "return this.width;";
11 11
12 SVGAnimatedLength get x() native "return this.x;"; 12 SVGAnimatedLengthJS get x() native "return this.x;";
13 13
14 SVGAnimatedLength get y() native "return this.y;"; 14 SVGAnimatedLengthJS get y() native "return this.y;";
15 15
16 // From SVGURIReference 16 // From SVGURIReference
17 17
18 SVGAnimatedString get href() native "return this.href;"; 18 SVGAnimatedStringJS get href() native "return this.href;";
19 19
20 // From SVGTests 20 // From SVGTests
21 21
22 SVGStringList get requiredExtensions() native "return this.requiredExtensions; "; 22 SVGStringListJS get requiredExtensions() native "return this.requiredExtension s;";
23 23
24 SVGStringList get requiredFeatures() native "return this.requiredFeatures;"; 24 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;";
25 25
26 SVGStringList get systemLanguage() native "return this.systemLanguage;"; 26 SVGStringListJS get systemLanguage() native "return this.systemLanguage;";
27 27
28 bool hasExtension(String extension) native; 28 bool hasExtension(String extension) native;
29 29
30 // From SVGLangSpace 30 // From SVGLangSpace
31 31
32 String get xmllang() native "return this.xmllang;"; 32 String get xmllang() native "return this.xmllang;";
33 33
34 void set xmllang(String value) native "this.xmllang = value;"; 34 void set xmllang(String value) native "this.xmllang = value;";
35 35
36 String get xmlspace() native "return this.xmlspace;"; 36 String get xmlspace() native "return this.xmlspace;";
37 37
38 void set xmlspace(String value) native "this.xmlspace = value;"; 38 void set xmlspace(String value) native "this.xmlspace = value;";
39 39
40 // From SVGExternalResourcesRequired 40 // From SVGExternalResourcesRequired
41 41
42 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;"; 42 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
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
52 // From SVGTransformable 52 // From SVGTransformable
53 53
54 SVGAnimatedTransformList get transform() native "return this.transform;"; 54 SVGAnimatedTransformListJS get transform() native "return this.transform;";
55 55
56 // From SVGLocatable 56 // From SVGLocatable
57 57
58 SVGElement get farthestViewportElement() native "return this.farthestViewportE lement;"; 58 SVGElementJS get farthestViewportElement() native "return this.farthestViewpor tElement;";
59 59
60 SVGElement get nearestViewportElement() native "return this.nearestViewportEle ment;"; 60 SVGElementJS get nearestViewportElement() native "return this.nearestViewportE lement;";
61 61
62 SVGRect getBBox() native; 62 SVGRectJS getBBox() native;
63 63
64 SVGMatrix getCTM() native; 64 SVGMatrixJS getCTM() native;
65 65
66 SVGMatrix getScreenCTM() native; 66 SVGMatrixJS getScreenCTM() native;
67 67
68 SVGMatrix getTransformToElement(SVGElement element) native; 68 SVGMatrixJS getTransformToElement(SVGElementJS element) native;
69 } 69 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGUnitTypes.dart ('k') | client/dom/generated/src/frog/SVGVKernElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698