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

Side by Side Diff: client/dom/generated/src/frog/SVGPatternElement.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 SVGPatternElementJs extends SVGElementJs implements SVGPatternElement nati ve "*SVGPatternElement" { 2 class _SVGPatternElementJs extends _SVGElementJs implements SVGPatternElement na tive "*SVGPatternElement" {
3 3
4 SVGAnimatedLengthJs get height() native "return this.height;"; 4 _SVGAnimatedLengthJs get height() native "return this.height;";
5 5
6 SVGAnimatedEnumerationJs get patternContentUnits() native "return this.pattern ContentUnits;"; 6 _SVGAnimatedEnumerationJs get patternContentUnits() native "return this.patter nContentUnits;";
7 7
8 SVGAnimatedTransformListJs get patternTransform() native "return this.patternT ransform;"; 8 _SVGAnimatedTransformListJs get patternTransform() native "return this.pattern Transform;";
9 9
10 SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits;" ; 10 _SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits; ";
11 11
12 SVGAnimatedLengthJs get width() native "return this.width;"; 12 _SVGAnimatedLengthJs get width() native "return this.width;";
13 13
14 SVGAnimatedLengthJs get x() native "return this.x;"; 14 _SVGAnimatedLengthJs get x() native "return this.x;";
15 15
16 SVGAnimatedLengthJs get y() native "return this.y;"; 16 _SVGAnimatedLengthJs get y() native "return this.y;";
17 17
18 // From SVGURIReference 18 // From SVGURIReference
19 19
20 SVGAnimatedStringJs get href() native "return this.href;"; 20 _SVGAnimatedStringJs get href() native "return this.href;";
21 21
22 // From SVGTests 22 // From SVGTests
23 23
24 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;"; 24 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio ns;";
25 25
26 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; 26 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;" ;
27 27
28 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; 28 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
29 29
30 bool hasExtension(String extension) native; 30 bool hasExtension(String extension) native;
31 31
32 // From SVGLangSpace 32 // From SVGLangSpace
33 33
34 String get xmllang() native "return this.xmllang;"; 34 String get xmllang() native "return this.xmllang;";
35 35
36 void set xmllang(String value) native "this.xmllang = value;"; 36 void set xmllang(String value) native "this.xmllang = value;";
37 37
38 String get xmlspace() native "return this.xmlspace;"; 38 String get xmlspace() native "return this.xmlspace;";
39 39
40 void set xmlspace(String value) native "this.xmlspace = value;"; 40 void set xmlspace(String value) native "this.xmlspace = value;";
41 41
42 // From SVGExternalResourcesRequired 42 // From SVGExternalResourcesRequired
43 43
44 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 44 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
45 45
46 // From SVGStylable 46 // From SVGStylable
47 47
48 SVGAnimatedStringJs get className() native "return this.className;"; 48 _SVGAnimatedStringJs get className() native "return this.className;";
49 49
50 CSSStyleDeclarationJs get style() native "return this.style;"; 50 _CSSStyleDeclarationJs get style() native "return this.style;";
51 51
52 CSSValueJs getPresentationAttribute(String name) native; 52 _CSSValueJs getPresentationAttribute(String name) native;
53 53
54 // From SVGFitToViewBox 54 // From SVGFitToViewBox
55 55
56 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 56 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
57 57
58 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 58 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
59 } 59 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGPathSegMovetoRel.dart ('k') | client/dom/generated/src/frog/SVGPoint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698