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

Side by Side Diff: client/dom/generated/src/frog/CSSPrimitiveValue.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
« no previous file with comments | « client/dom/frog/frog_dom.dart ('k') | client/dom/generated/src/frog/CSSRule.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 class CSSPrimitiveValue extends CSSValue native "*CSSPrimitiveValue" { 2 class CSSPrimitiveValue extends CSSValue native "*CSSPrimitiveValue" {
3 3
4 static final int CSS_ATTR = 22;
5
6 static final int CSS_CM = 6;
7
8 static final int CSS_COUNTER = 23;
9
10 static final int CSS_DEG = 11;
11
12 static final int CSS_DIMENSION = 18;
13
14 static final int CSS_EMS = 3;
15
16 static final int CSS_EXS = 4;
17
18 static final int CSS_GRAD = 13;
19
20 static final int CSS_HZ = 16;
21
22 static final int CSS_IDENT = 21;
23
24 static final int CSS_IN = 8;
25
26 static final int CSS_KHZ = 17;
27
28 static final int CSS_MM = 7;
29
30 static final int CSS_MS = 14;
31
32 static final int CSS_NUMBER = 1;
33
34 static final int CSS_PC = 10;
35
36 static final int CSS_PERCENTAGE = 2;
37
38 static final int CSS_PT = 9;
39
40 static final int CSS_PX = 5;
41
42 static final int CSS_RAD = 12;
43
44 static final int CSS_RECT = 24;
45
46 static final int CSS_RGBCOLOR = 25;
47
48 static final int CSS_S = 15;
49
50 static final int CSS_STRING = 19;
51
52 static final int CSS_UNKNOWN = 0;
53
54 static final int CSS_URI = 20;
55
4 int primitiveType; 56 int primitiveType;
5 57
6 Counter getCounterValue() native; 58 Counter getCounterValue() native;
7 59
8 num getFloatValue(int unitType) native; 60 num getFloatValue(int unitType) native;
9 61
10 RGBColor getRGBColorValue() native; 62 RGBColor getRGBColorValue() native;
11 63
12 Rect getRectValue() native; 64 Rect getRectValue() native;
13 65
14 String getStringValue() native; 66 String getStringValue() native;
15 67
16 void setFloatValue(int unitType, num floatValue) native; 68 void setFloatValue(int unitType, num floatValue) native;
17 69
18 void setStringValue(int stringType, String stringValue) native; 70 void setStringValue(int stringType, String stringValue) native;
19 } 71 }
OLDNEW
« no previous file with comments | « client/dom/frog/frog_dom.dart ('k') | client/dom/generated/src/frog/CSSRule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698