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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 10 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 _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S VGUseElement" { 2 class _SVGUseElementJs extends _SVGElementJs implements SVGUseElement native "*S VGUseElement" {
3 3
4 _SVGElementInstanceJs get animatedInstanceRoot() native "return this.animatedI nstanceRoot;"; 4 final _SVGElementInstanceJs animatedInstanceRoot;
5 5
6 _SVGAnimatedLengthJs get height() native "return this.height;"; 6 final _SVGAnimatedLengthJs height;
7 7
8 _SVGElementInstanceJs get instanceRoot() native "return this.instanceRoot;"; 8 final _SVGElementInstanceJs instanceRoot;
9 9
10 _SVGAnimatedLengthJs get width() native "return this.width;"; 10 final _SVGAnimatedLengthJs width;
11 11
12 _SVGAnimatedLengthJs get x() native "return this.x;"; 12 final _SVGAnimatedLengthJs x;
13 13
14 _SVGAnimatedLengthJs get y() native "return this.y;"; 14 final _SVGAnimatedLengthJs y;
15 15
16 // From SVGURIReference 16 // From SVGURIReference
17 17
18 _SVGAnimatedStringJs get href() native "return this.href;"; 18 final _SVGAnimatedStringJs href;
19 19
20 // From SVGTests 20 // From SVGTests
21 21
22 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;"; 22 final _SVGStringListJs requiredExtensions;
23 23
24 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ; 24 final _SVGStringListJs requiredFeatures;
25 25
26 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 26 final _SVGStringListJs 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 xmllang;
33 33
34 void set xmllang(String value) native "this.xmllang = value;"; 34 String xmlspace;
35
36 String get xmlspace() native "return this.xmlspace;";
37
38 void set xmlspace(String value) native "this.xmlspace = value;";
39 35
40 // From SVGExternalResourcesRequired 36 // From SVGExternalResourcesRequired
41 37
42 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;"; 38 final _SVGAnimatedBooleanJs externalResourcesRequired;
43 39
44 // From SVGStylable 40 // From SVGStylable
45 41
46 _SVGAnimatedStringJs get className() native "return this.className;"; 42 final _SVGAnimatedStringJs className;
47 43
48 _CSSStyleDeclarationJs get style() native "return this.style;"; 44 final _CSSStyleDeclarationJs style;
49 45
50 _CSSValueJs getPresentationAttribute(String name) native; 46 _CSSValueJs getPresentationAttribute(String name) native;
51 47
52 // From SVGTransformable 48 // From SVGTransformable
53 49
54 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; 50 final _SVGAnimatedTransformListJs transform;
55 51
56 // From SVGLocatable 52 // From SVGLocatable
57 53
58 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;"; 54 final _SVGElementJs farthestViewportElement;
59 55
60 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;"; 56 final _SVGElementJs nearestViewportElement;
61 57
62 _SVGRectJs getBBox() native; 58 _SVGRectJs getBBox() native;
63 59
64 _SVGMatrixJs getCTM() native; 60 _SVGMatrixJs getCTM() native;
65 61
66 _SVGMatrixJs getScreenCTM() native; 62 _SVGMatrixJs getScreenCTM() native;
67 63
68 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; 64 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
69 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698