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

Side by Side Diff: client/dom/generated/src/frog/SVGPatternElement.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 _SVGPatternElementJs extends _SVGElementJs implements SVGPatternElement na tive "*SVGPatternElement" { 2 class _SVGPatternElementJs extends _SVGElementJs implements SVGPatternElement na tive "*SVGPatternElement" {
3 3
4 _SVGAnimatedLengthJs get height() native "return this.height;"; 4 final _SVGAnimatedLengthJs height;
5 5
6 _SVGAnimatedEnumerationJs get patternContentUnits() native "return this.patter nContentUnits;"; 6 final _SVGAnimatedEnumerationJs patternContentUnits;
7 7
8 _SVGAnimatedTransformListJs get patternTransform() native "return this.pattern Transform;"; 8 final _SVGAnimatedTransformListJs patternTransform;
9 9
10 _SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits; "; 10 final _SVGAnimatedEnumerationJs patternUnits;
11 11
12 _SVGAnimatedLengthJs get width() native "return this.width;"; 12 final _SVGAnimatedLengthJs width;
13 13
14 _SVGAnimatedLengthJs get x() native "return this.x;"; 14 final _SVGAnimatedLengthJs x;
15 15
16 _SVGAnimatedLengthJs get y() native "return this.y;"; 16 final _SVGAnimatedLengthJs y;
17 17
18 // From SVGURIReference 18 // From SVGURIReference
19 19
20 _SVGAnimatedStringJs get href() native "return this.href;"; 20 final _SVGAnimatedStringJs href;
21 21
22 // From SVGTests 22 // From SVGTests
23 23
24 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;"; 24 final _SVGStringListJs requiredExtensions;
25 25
26 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ; 26 final _SVGStringListJs requiredFeatures;
27 27
28 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 28 final _SVGStringListJs systemLanguage;
29 29
30 bool hasExtension(String extension) native; 30 bool hasExtension(String extension) native;
31 31
32 // From SVGLangSpace 32 // From SVGLangSpace
33 33
34 String get xmllang() native "return this.xmllang;"; 34 String xmllang;
35 35
36 void set xmllang(String value) native "this.xmllang = value;"; 36 String xmlspace;
37
38 String get xmlspace() native "return this.xmlspace;";
39
40 void set xmlspace(String value) native "this.xmlspace = value;";
41 37
42 // From SVGExternalResourcesRequired 38 // From SVGExternalResourcesRequired
43 39
44 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;"; 40 final _SVGAnimatedBooleanJs externalResourcesRequired;
45 41
46 // From SVGStylable 42 // From SVGStylable
47 43
48 _SVGAnimatedStringJs get className() native "return this.className;"; 44 final _SVGAnimatedStringJs className;
49 45
50 _CSSStyleDeclarationJs get style() native "return this.style;"; 46 final _CSSStyleDeclarationJs style;
51 47
52 _CSSValueJs getPresentationAttribute(String name) native; 48 _CSSValueJs getPresentationAttribute(String name) native;
53 49
54 // From SVGFitToViewBox 50 // From SVGFitToViewBox
55 51
56 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;"; 52 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
57 53
58 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 54 final _SVGAnimatedRectJs viewBox;
59 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698