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

Side by Side Diff: client/dom/generated/src/frog/SVGUseElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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 SVGUseElement extends SVGElement native "*SVGUseElement" { 2 class SVGUseElement extends SVGElement native "*SVGUseElement" {
3 3
4 SVGElementInstance animatedInstanceRoot; 4 SVGElementInstance get animatedInstanceRoot() native "return this.animatedInst anceRoot;";
5 5
6 SVGAnimatedLength height; 6 SVGAnimatedLength get height() native "return this.height;";
7 7
8 SVGElementInstance instanceRoot; 8 SVGElementInstance get instanceRoot() native "return this.instanceRoot;";
9 9
10 SVGAnimatedLength width; 10 SVGAnimatedLength get width() native "return this.width;";
11 11
12 SVGAnimatedLength x; 12 SVGAnimatedLength get x() native "return this.x;";
13 13
14 SVGAnimatedLength y; 14 SVGAnimatedLength get y() native "return this.y;";
15 15
16 // From SVGURIReference 16 // From SVGURIReference
17 17
18 SVGAnimatedString href; 18 SVGAnimatedString get href() native "return this.href;";
19 19
20 // From SVGTests 20 // From SVGTests
21 21
22 SVGStringList requiredExtensions; 22 SVGStringList get requiredExtensions() native "return this.requiredExtensions; ";
23 23
24 SVGStringList requiredFeatures; 24 SVGStringList get requiredFeatures() native "return this.requiredFeatures;";
25 25
26 SVGStringList systemLanguage; 26 SVGStringList get systemLanguage() native "return this.systemLanguage;";
27 27
28 bool hasExtension(String extension) native; 28 bool hasExtension(String extension) native;
29 29
30 // From SVGLangSpace 30 // From SVGLangSpace
31 31
32 String xmllang; 32 String get xmllang() native "return this.xmllang;";
33 33
34 String xmlspace; 34 void set xmllang(String value) native "this.xmllang = value;";
35
36 String get xmlspace() native "return this.xmlspace;";
37
38 void set xmlspace(String value) native "this.xmlspace = value;";
35 39
36 // From SVGExternalResourcesRequired 40 // From SVGExternalResourcesRequired
37 41
38 SVGAnimatedBoolean externalResourcesRequired; 42 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;";
39 43
40 // From SVGStylable 44 // From SVGStylable
41 45
42 SVGAnimatedString className; 46 SVGAnimatedString get className() native "return this.className;";
43 47
44 CSSStyleDeclaration style; 48 CSSStyleDeclaration get style() native "return this.style;";
45 49
46 CSSValue getPresentationAttribute(String name) native; 50 CSSValue getPresentationAttribute(String name) native;
47 51
48 // From SVGTransformable 52 // From SVGTransformable
49 53
50 SVGAnimatedTransformList transform; 54 SVGAnimatedTransformList get transform() native "return this.transform;";
51 55
52 // From SVGLocatable 56 // From SVGLocatable
53 57
54 SVGElement farthestViewportElement; 58 SVGElement get farthestViewportElement() native "return this.farthestViewportE lement;";
55 59
56 SVGElement nearestViewportElement; 60 SVGElement get nearestViewportElement() native "return this.nearestViewportEle ment;";
57 61
58 SVGRect getBBox() native; 62 SVGRect getBBox() native;
59 63
60 SVGMatrix getCTM() native; 64 SVGMatrix getCTM() native;
61 65
62 SVGMatrix getScreenCTM() native; 66 SVGMatrix getScreenCTM() native;
63 67
64 SVGMatrix getTransformToElement(SVGElement element) native; 68 SVGMatrix getTransformToElement(SVGElement element) native;
65 } 69 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGURIReference.dart ('k') | client/dom/generated/src/frog/SVGViewElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698