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

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

Powered by Google App Engine
This is Rietveld 408576698