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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 SVGTextPathElement extends SVGTextContentElement native "*SVGTextPathEleme nt" { 2 class SVGTextPathElementJS extends SVGTextContentElementJS implements SVGTextPat hElement 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 SVGAnimatedEnumeration get method() native "return this.method;"; 16 SVGAnimatedEnumerationJS get method() native "return this.method;";
17 17
18 SVGAnimatedEnumeration get spacing() native "return this.spacing;"; 18 SVGAnimatedEnumerationJS get spacing() native "return this.spacing;";
19 19
20 SVGAnimatedLength get startOffset() native "return this.startOffset;"; 20 SVGAnimatedLengthJS get startOffset() native "return this.startOffset;";
21 21
22 // From SVGURIReference 22 // From SVGURIReference
23 23
24 SVGAnimatedString get href() native "return this.href;"; 24 SVGAnimatedStringJS get href() native "return this.href;";
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGTextElement.dart ('k') | client/dom/generated/src/frog/SVGTextPositioningElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698