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

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

Powered by Google App Engine
This is Rietveld 408576698