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

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

Powered by Google App Engine
This is Rietveld 408576698