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

Side by Side Diff: client/dom/generated/src/frog/SVGSymbolElement.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 SVGSymbolElementJs extends SVGElementJs implements SVGSymbolElement native "*SVGSymbolElement" { 2 class _SVGSymbolElementJs extends _SVGElementJs implements SVGSymbolElement nati ve "*SVGSymbolElement" {
3 3
4 // From SVGLangSpace 4 // From SVGLangSpace
5 5
6 String get xmllang() native "return this.xmllang;"; 6 String get xmllang() native "return this.xmllang;";
7 7
8 void set xmllang(String value) native "this.xmllang = value;"; 8 void set xmllang(String value) native "this.xmllang = value;";
9 9
10 String get xmlspace() native "return this.xmlspace;"; 10 String get xmlspace() native "return this.xmlspace;";
11 11
12 void set xmlspace(String value) native "this.xmlspace = value;"; 12 void set xmlspace(String value) native "this.xmlspace = value;";
13 13
14 // From SVGExternalResourcesRequired 14 // From SVGExternalResourcesRequired
15 15
16 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 16 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte rnalResourcesRequired;";
17 17
18 // From SVGStylable 18 // From SVGStylable
19 19
20 SVGAnimatedStringJs get className() native "return this.className;"; 20 _SVGAnimatedStringJs get className() native "return this.className;";
21 21
22 CSSStyleDeclarationJs get style() native "return this.style;"; 22 _CSSStyleDeclarationJs get style() native "return this.style;";
23 23
24 CSSValueJs getPresentationAttribute(String name) native; 24 _CSSValueJs getPresentationAttribute(String name) native;
25 25
26 // From SVGFitToViewBox 26 // From SVGFitToViewBox
27 27
28 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this .preserveAspectRatio;"; 28 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi s.preserveAspectRatio;";
29 29
30 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; 30 _SVGAnimatedRectJs get viewBox() native "return this.viewBox;";
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGSwitchElement.dart ('k') | client/dom/generated/src/frog/SVGTRefElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698