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

Side by Side Diff: client/dom/generated/src/frog/SVGFEImageElement.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 _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na tive "*SVGFEImageElement" { 2 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na tive "*SVGFEImageElement" {
3 3
4 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;"; 4 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio;
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 SVGLangSpace 10 // From SVGLangSpace
11 11
12 String get xmllang() native "return this.xmllang;"; 12 String xmllang;
13 13
14 void set xmllang(String value) native "this.xmllang = value;"; 14 String xmlspace;
15
16 String get xmlspace() native "return this.xmlspace;";
17
18 void set xmlspace(String value) native "this.xmlspace = value;";
19 15
20 // From SVGExternalResourcesRequired 16 // From SVGExternalResourcesRequired
21 17
22 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;"; 18 final _SVGAnimatedBooleanJs externalResourcesRequired;
23 19
24 // From SVGFilterPrimitiveStandardAttributes 20 // From SVGFilterPrimitiveStandardAttributes
25 21
26 _SVGAnimatedLengthJs get height() native "return this.height;"; 22 final _SVGAnimatedLengthJs height;
27 23
28 _SVGAnimatedStringJs get result() native "return this.result;"; 24 final _SVGAnimatedStringJs result;
29 25
30 _SVGAnimatedLengthJs get width() native "return this.width;"; 26 final _SVGAnimatedLengthJs width;
31 27
32 _SVGAnimatedLengthJs get x() native "return this.x;"; 28 final _SVGAnimatedLengthJs x;
33 29
34 _SVGAnimatedLengthJs get y() native "return this.y;"; 30 final _SVGAnimatedLengthJs y;
35 31
36 // From SVGStylable 32 // From SVGStylable
37 33
38 _SVGAnimatedStringJs get className() native "return this.className;"; 34 final _SVGAnimatedStringJs className;
39 35
40 _CSSStyleDeclarationJs get style() native "return this.style;"; 36 final _CSSStyleDeclarationJs style;
41 37
42 _CSSValueJs getPresentationAttribute(String name) native; 38 _CSSValueJs getPresentationAttribute(String name) native;
43 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698