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

Side by Side Diff: client/dom/generated/src/frog/SVGGlyphRefElement.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 native "*SVGGlyphRefElement" { 2 class _SVGGlyphRefElementJs extends _SVGElementJs implements SVGGlyphRefElement native "*SVGGlyphRefElement" {
3 3
4 num get dx() native "return this.dx;"; 4 num dx;
5 5
6 void set dx(num value) native "this.dx = value;"; 6 num dy;
7 7
8 num get dy() native "return this.dy;"; 8 String format;
9 9
10 void set dy(num value) native "this.dy = value;"; 10 String glyphRef;
11 11
12 String get format() native "return this.format;"; 12 num x;
13 13
14 void set format(String value) native "this.format = value;"; 14 num y;
15
16 String get glyphRef() native "return this.glyphRef;";
17
18 void set glyphRef(String value) native "this.glyphRef = value;";
19
20 num get x() native "return this.x;";
21
22 void set x(num value) native "this.x = value;";
23
24 num get y() native "return this.y;";
25
26 void set y(num value) native "this.y = value;";
27 15
28 // From SVGURIReference 16 // From SVGURIReference
29 17
30 _SVGAnimatedStringJs get href() native "return this.href;"; 18 final _SVGAnimatedStringJs href;
31 19
32 // From SVGStylable 20 // From SVGStylable
33 21
34 _SVGAnimatedStringJs get className() native "return this.className;"; 22 final _SVGAnimatedStringJs className;
35 23
36 _CSSStyleDeclarationJs get style() native "return this.style;"; 24 final _CSSStyleDeclarationJs style;
37 25
38 _CSSValueJs getPresentationAttribute(String name) native; 26 _CSSValueJs getPresentationAttribute(String name) native;
39 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698