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

Side by Side Diff: client/dom/generated/src/frog/SVGForeignObjectElement.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 SVGForeignObjectElementJs extends SVGElementJs implements SVGForeignObject Element native "*SVGForeignObjectElement" { 2 class _SVGForeignObjectElementJs extends _SVGElementJs implements SVGForeignObje ctElement native "*SVGForeignObjectElement" {
3 3
4 SVGAnimatedLengthJs get height() native "return this.height;"; 4 _SVGAnimatedLengthJs get height() native "return this.height;";
5 5
6 SVGAnimatedLengthJs get width() native "return this.width;"; 6 _SVGAnimatedLengthJs get width() native "return this.width;";
7 7
8 SVGAnimatedLengthJs get x() native "return this.x;"; 8 _SVGAnimatedLengthJs get x() native "return this.x;";
9 9
10 SVGAnimatedLengthJs get y() native "return this.y;"; 10 _SVGAnimatedLengthJs get y() native "return this.y;";
11 11
12 // From SVGTests 12 // From SVGTests
13 13
14 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 14 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
15 15
16 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 16 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
17 17
18 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 18 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
19 19
20 bool hasExtension(String extension) native; 20 bool hasExtension(String extension) native;
21 21
22 // From SVGLangSpace 22 // From SVGLangSpace
23 23
24 String get xmllang() native "return this.xmllang;"; 24 String get xmllang() native "return this.xmllang;";
25 25
26 void set xmllang(String value) native "this.xmllang = value;"; 26 void set xmllang(String value) native "this.xmllang = value;";
27 27
28 String get xmlspace() native "return this.xmlspace;"; 28 String get xmlspace() native "return this.xmlspace;";
29 29
30 void set xmlspace(String value) native "this.xmlspace = value;"; 30 void set xmlspace(String value) native "this.xmlspace = value;";
31 31
32 // From SVGExternalResourcesRequired 32 // From SVGExternalResourcesRequired
33 33
34 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 34 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
35 35
36 // From SVGStylable 36 // From SVGStylable
37 37
38 SVGAnimatedStringJs get className() native "return this.className;"; 38 _SVGAnimatedStringJs get className() native "return this.className;";
39 39
40 CSSStyleDeclarationJs get style() native "return this.style;"; 40 _CSSStyleDeclarationJs get style() native "return this.style;";
41 41
42 CSSValueJs getPresentationAttribute(String name) native; 42 _CSSValueJs getPresentationAttribute(String name) native;
43 43
44 // From SVGTransformable 44 // From SVGTransformable
45 45
46 SVGAnimatedTransformListJs get transform() native "return this.transform;"; 46 _SVGAnimatedTransformListJs get transform() native "return this.transform;";
47 47
48 // From SVGLocatable 48 // From SVGLocatable
49 49
50 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;"; 50 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo rtElement;";
51 51
52 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;"; 52 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport Element;";
53 53
54 SVGRectJs getBBox() native; 54 _SVGRectJs getBBox() native;
55 55
56 SVGMatrixJs getCTM() native; 56 _SVGMatrixJs getCTM() native;
57 57
58 SVGMatrixJs getScreenCTM() native; 58 _SVGMatrixJs getScreenCTM() native;
59 59
60 SVGMatrixJs getTransformToElement(SVGElementJs element) native; 60 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native;
61 } 61 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGFontFaceUriElement.dart ('k') | client/dom/generated/src/frog/SVGGElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698