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

Side by Side Diff: client/dom/generated/src/frog/SVGEllipseElement.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 SVGEllipseElement extends SVGElement native "*SVGEllipseElement" { 2 class SVGEllipseElementJS extends SVGElementJS implements SVGEllipseElement nati ve "*SVGEllipseElement" {
3 3
4 SVGAnimatedLength get cx() native "return this.cx;"; 4 SVGAnimatedLengthJS get cx() native "return this.cx;";
5 5
6 SVGAnimatedLength get cy() native "return this.cy;"; 6 SVGAnimatedLengthJS get cy() native "return this.cy;";
7 7
8 SVGAnimatedLength get rx() native "return this.rx;"; 8 SVGAnimatedLengthJS get rx() native "return this.rx;";
9 9
10 SVGAnimatedLength get ry() native "return this.ry;"; 10 SVGAnimatedLengthJS get ry() native "return this.ry;";
11 11
12 // From SVGTests 12 // From SVGTests
13 13
14 SVGStringList get requiredExtensions() native "return this.requiredExtensions; "; 14 SVGStringListJS get requiredExtensions() native "return this.requiredExtension s;";
15 15
16 SVGStringList get requiredFeatures() native "return this.requiredFeatures;"; 16 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;";
17 17
18 SVGStringList get systemLanguage() native "return this.systemLanguage;"; 18 SVGStringListJS get systemLanguage() native "return this.systemLanguage;";
19 19
20 bool hasExtension(String extension) native; 20 bool hasExtension(String extension) native;
21 21
22 // From SVGLangSpace 22 // From SVGLangSpace
23 23
24 String get xmllang() native "return this.xmllang;"; 24 String get xmllang() native "return this.xmllang;";
25 25
26 void set xmllang(String value) native "this.xmllang = value;"; 26 void set xmllang(String value) native "this.xmllang = value;";
27 27
28 String get xmlspace() native "return this.xmlspace;"; 28 String get xmlspace() native "return this.xmlspace;";
29 29
30 void set xmlspace(String value) native "this.xmlspace = value;"; 30 void set xmlspace(String value) native "this.xmlspace = value;";
31 31
32 // From SVGExternalResourcesRequired 32 // From SVGExternalResourcesRequired
33 33
34 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;"; 34 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
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
44 // From SVGTransformable 44 // From SVGTransformable
45 45
46 SVGAnimatedTransformList get transform() native "return this.transform;"; 46 SVGAnimatedTransformListJS get transform() native "return this.transform;";
47 47
48 // From SVGLocatable 48 // From SVGLocatable
49 49
50 SVGElement get farthestViewportElement() native "return this.farthestViewportE lement;"; 50 SVGElementJS get farthestViewportElement() native "return this.farthestViewpor tElement;";
51 51
52 SVGElement get nearestViewportElement() native "return this.nearestViewportEle ment;"; 52 SVGElementJS get nearestViewportElement() native "return this.nearestViewportE lement;";
53 53
54 SVGRect getBBox() native; 54 SVGRectJS getBBox() native;
55 55
56 SVGMatrix getCTM() native; 56 SVGMatrixJS getCTM() native;
57 57
58 SVGMatrix getScreenCTM() native; 58 SVGMatrixJS getScreenCTM() native;
59 59
60 SVGMatrix getTransformToElement(SVGElement element) native; 60 SVGMatrixJS getTransformToElement(SVGElementJS element) native;
61 } 61 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGElementInstanceList.dart ('k') | client/dom/generated/src/frog/SVGException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698