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

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

Powered by Google App Engine
This is Rietveld 408576698