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

Side by Side Diff: client/dom/generated/src/frog/SVGTextPathElement.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 _SVGTextPathElementJs extends _SVGTextContentElementJs implements SVGTextP athElement native "*SVGTextPathElement" { 2 class _SVGTextPathElementJs extends _SVGTextContentElementJs implements SVGTextP athElement native "*SVGTextPathElement" {
3 3
4 static final int TEXTPATH_METHODTYPE_ALIGN = 1; 4 static final int TEXTPATH_METHODTYPE_ALIGN = 1;
5 5
6 static final int TEXTPATH_METHODTYPE_STRETCH = 2; 6 static final int TEXTPATH_METHODTYPE_STRETCH = 2;
7 7
8 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; 8 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0;
9 9
10 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; 10 static final int TEXTPATH_SPACINGTYPE_AUTO = 1;
11 11
12 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; 12 static final int TEXTPATH_SPACINGTYPE_EXACT = 2;
13 13
14 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 14 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
15 15
16 _SVGAnimatedEnumerationJs get method() native "return this.method;"; 16 final _SVGAnimatedEnumerationJs method;
17 17
18 _SVGAnimatedEnumerationJs get spacing() native "return this.spacing;"; 18 final _SVGAnimatedEnumerationJs spacing;
19 19
20 _SVGAnimatedLengthJs get startOffset() native "return this.startOffset;"; 20 final _SVGAnimatedLengthJs startOffset;
21 21
22 // From SVGURIReference 22 // From SVGURIReference
23 23
24 _SVGAnimatedStringJs get href() native "return this.href;"; 24 final _SVGAnimatedStringJs href;
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698