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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 SVGImageElementJs extends SVGElementJs implements SVGImageElement native " *SVGImageElement" { 2 class _SVGImageElementJs extends _SVGElementJs implements SVGImageElement native "*SVGImageElement" {
3 3
4 SVGAnimatedLengthJs get height() native "return this.height;"; 4 _SVGAnimatedLengthJs get height() native "return this.height;";
5 5
6 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 6 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
7 7
8 SVGAnimatedLengthJs get width() native "return this.width;"; 8 _SVGAnimatedLengthJs get width() native "return this.width;";
9 9
10 SVGAnimatedLengthJs get x() native "return this.x;"; 10 _SVGAnimatedLengthJs get x() native "return this.x;";
11 11
12 SVGAnimatedLengthJs get y() native "return this.y;"; 12 _SVGAnimatedLengthJs get y() native "return this.y;";
13 13
14 // From SVGURIReference 14 // From SVGURIReference
15 15
16 SVGAnimatedStringJs get href() native "return this.href;"; 16 _SVGAnimatedStringJs get href() native "return this.href;";
17 17
18 // From SVGTests 18 // From SVGTests
19 19
20 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 20 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
21 21
22 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 22 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
23 23
24 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 24 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
25 25
26 bool hasExtension(String extension) native; 26 bool hasExtension(String extension) native;
27 27
28 // From SVGLangSpace 28 // From SVGLangSpace
29 29
30 String get xmllang() native "return this.xmllang;"; 30 String get xmllang() native "return this.xmllang;";
31 31
32 void set xmllang(String value) native "this.xmllang = value;"; 32 void set xmllang(String value) native "this.xmllang = value;";
33 33
34 String get xmlspace() native "return this.xmlspace;"; 34 String get xmlspace() native "return this.xmlspace;";
35 35
36 void set xmlspace(String value) native "this.xmlspace = value;"; 36 void set xmlspace(String value) native "this.xmlspace = value;";
37 37
38 // From SVGExternalResourcesRequired 38 // From SVGExternalResourcesRequired
39 39
40 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 40 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
41 41
42 // From SVGStylable 42 // From SVGStylable
43 43
44 SVGAnimatedStringJs get className() native "return this.className;"; 44 _SVGAnimatedStringJs get className() native "return this.className;";
45 45
46 CSSStyleDeclarationJs get style() native "return this.style;"; 46 _CSSStyleDeclarationJs get style() native "return this.style;";
47 47
48 CSSValueJs getPresentationAttribute(String name) native; 48 _CSSValueJs getPresentationAttribute(String name) native;
49 49
50 // From SVGTransformable 50 // From SVGTransformable
51 51
52 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 52 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
53 53
54 // From SVGLocatable 54 // From SVGLocatable
55 55
56 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 56 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
57 57
58 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 58 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
59 59
60 SVGRectJs getBBox() native; 60 _SVGRectJs getBBox() native;
61 61
62 SVGMatrixJs getCTM() native; 62 _SVGMatrixJs getCTM() native;
63 63
64 SVGMatrixJs getScreenCTM() native; 64 _SVGMatrixJs getScreenCTM() native;
65 65
66 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 66 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
67 } 67 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGHKernElement.dart ('k') | client/dom/generated/src/frog/SVGLangSpace.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698