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

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

Powered by Google App Engine
This is Rietveld 408576698