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

Side by Side Diff: client/dom/generated/src/frog/SVGGlyphRefElement.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 SVGGlyphRefElementJs extends SVGElementJs implements SVGGlyphRefElement na tive "*SVGGlyphRefElement" { 2 class _SVGGlyphRefElementJs extends _SVGElementJs implements SVGGlyphRefElement native "*SVGGlyphRefElement" {
3 3
4 num get dx() native "return this.dx;"; 4 num get dx() native "return this.dx;";
5 5
6 void set dx(num value) native "this.dx = value;"; 6 void set dx(num value) native "this.dx = value;";
7 7
8 num get dy() native "return this.dy;"; 8 num get dy() native "return this.dy;";
9 9
10 void set dy(num value) native "this.dy = value;"; 10 void set dy(num value) native "this.dy = value;";
11 11
12 String get format() native "return this.format;"; 12 String get format() native "return this.format;";
13 13
14 void set format(String value) native "this.format = value;"; 14 void set format(String value) native "this.format = value;";
15 15
16 String get glyphRef() native "return this.glyphRef;"; 16 String get glyphRef() native "return this.glyphRef;";
17 17
18 void set glyphRef(String value) native "this.glyphRef = value;"; 18 void set glyphRef(String value) native "this.glyphRef = value;";
19 19
20 num get x() native "return this.x;"; 20 num get x() native "return this.x;";
21 21
22 void set x(num value) native "this.x = value;"; 22 void set x(num value) native "this.x = value;";
23 23
24 num get y() native "return this.y;"; 24 num get y() native "return this.y;";
25 25
26 void set y(num value) native "this.y = value;"; 26 void set y(num value) native "this.y = value;";
27 27
28 // From SVGURIReference 28 // From SVGURIReference
29 29
30 SVGAnimatedStringJs get href() native "return this.href;"; 30 _SVGAnimatedStringJs get href() native "return this.href;";
31 31
32 // From SVGStylable 32 // From SVGStylable
33 33
34 SVGAnimatedStringJs get className() native "return this.className;"; 34 _SVGAnimatedStringJs get className() native "return this.className;";
35 35
36 CSSStyleDeclarationJs get style() native "return this.style;"; 36 _CSSStyleDeclarationJs get style() native "return this.style;";
37 37
38 CSSValueJs getPresentationAttribute(String name) native; 38 _CSSValueJs getPresentationAttribute(String name) native;
39 } 39 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGGlyphElement.dart ('k') | client/dom/generated/src/frog/SVGGradientElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698