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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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 SVGAngle native "*SVGAngle" { 2 class SVGAngle native "*SVGAngle" {
3 3
4 static final int SVG_ANGLETYPE_DEG = 2;
5
6 static final int SVG_ANGLETYPE_GRAD = 4;
7
8 static final int SVG_ANGLETYPE_RAD = 3;
9
10 static final int SVG_ANGLETYPE_UNKNOWN = 0;
11
12 static final int SVG_ANGLETYPE_UNSPECIFIED = 1;
13
4 int unitType; 14 int unitType;
5 15
6 num value; 16 num value;
7 17
8 String valueAsString; 18 String valueAsString;
9 19
10 num valueInSpecifiedUnits; 20 num valueInSpecifiedUnits;
11 21
12 void convertToSpecifiedUnits(int unitType) native; 22 void convertToSpecifiedUnits(int unitType) native;
13 23
14 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; 24 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native;
15 25
16 var dartObjectLocalStorage; 26 var dartObjectLocalStorage;
17 27
18 String get typeName() native; 28 String get typeName() native;
19 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SQLException.dart ('k') | client/dom/generated/src/frog/SVGColor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698