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

Side by Side Diff: client/dom/generated/src/frog/SVGAElement.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 _SVGAElementJs extends _SVGElementJs implements SVGAElement native "*SVGAE lement" { 2 class _SVGAElementJs extends _SVGElementJs implements SVGAElement native "*SVGAE lement" {
3 3
4 _SVGAnimatedStringJs get target() native "return this.target;"; 4 final _SVGAnimatedStringJs target;
5 5
6 // From SVGURIReference 6 // From SVGURIReference
7 7
8 _SVGAnimatedStringJs get href() native "return this.href;"; 8 final _SVGAnimatedStringJs href;
9 9
10 // From SVGTests 10 // From SVGTests
11 11
12 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;"; 12 final _SVGStringListJs requiredExtensions;
13 13
14 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ; 14 final _SVGStringListJs requiredFeatures;
15 15
16 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 16 final _SVGStringListJs systemLanguage;
17 17
18 bool hasExtension(String extension) native; 18 bool hasExtension(String extension) native;
19 19
20 // From SVGLangSpace 20 // From SVGLangSpace
21 21
22 String get xmllang() native "return this.xmllang;"; 22 String xmllang;
23 23
24 void set xmllang(String value) native "this.xmllang = value;"; 24 String xmlspace;
25
26 String get xmlspace() native "return this.xmlspace;";
27
28 void set xmlspace(String value) native "this.xmlspace = value;";
29 25
30 // From SVGExternalResourcesRequired 26 // From SVGExternalResourcesRequired
31 27
32 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;"; 28 final _SVGAnimatedBooleanJs externalResourcesRequired;
33 29
34 // From SVGStylable 30 // From SVGStylable
35 31
36 _SVGAnimatedStringJs get className() native "return this.className;"; 32 final _SVGAnimatedStringJs className;
37 33
38 _CSSStyleDeclarationJs get style() native "return this.style;"; 34 final _CSSStyleDeclarationJs style;
39 35
40 _CSSValueJs getPresentationAttribute(String name) native; 36 _CSSValueJs getPresentationAttribute(String name) native;
41 37
42 // From SVGTransformable 38 // From SVGTransformable
43 39
44 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; 40 final _SVGAnimatedTransformListJs transform;
45 41
46 // From SVGLocatable 42 // From SVGLocatable
47 43
48 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;"; 44 final _SVGElementJs farthestViewportElement;
49 45
50 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;"; 46 final _SVGElementJs nearestViewportElement;
51 47
52 _SVGRectJs getBBox() native; 48 _SVGRectJs getBBox() native;
53 49
54 _SVGMatrixJs getCTM() native; 50 _SVGMatrixJs getCTM() native;
55 51
56 _SVGMatrixJs getScreenCTM() native; 52 _SVGMatrixJs getScreenCTM() native;
57 53
58 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; 54 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
59 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698