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

Side by Side Diff: client/dom/generated/src/frog/Event.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 Event native "*Event" { 2 class Event native "*Event" {
3 3
4 static final int AT_TARGET = 2;
5
6 static final int BLUR = 8192;
7
8 static final int BUBBLING_PHASE = 3;
9
10 static final int CAPTURING_PHASE = 1;
11
12 static final int CHANGE = 32768;
13
14 static final int CLICK = 64;
15
16 static final int DBLCLICK = 128;
17
18 static final int DRAGDROP = 2048;
19
20 static final int FOCUS = 4096;
21
22 static final int KEYDOWN = 256;
23
24 static final int KEYPRESS = 1024;
25
26 static final int KEYUP = 512;
27
28 static final int MOUSEDOWN = 1;
29
30 static final int MOUSEDRAG = 32;
31
32 static final int MOUSEMOVE = 16;
33
34 static final int MOUSEOUT = 8;
35
36 static final int MOUSEOVER = 4;
37
38 static final int MOUSEUP = 2;
39
40 static final int SELECT = 16384;
41
4 bool bubbles; 42 bool bubbles;
5 43
6 bool cancelBubble; 44 bool cancelBubble;
7 45
8 bool cancelable; 46 bool cancelable;
9 47
10 Clipboard clipboardData; 48 Clipboard clipboardData;
11 49
12 EventTarget currentTarget; 50 EventTarget currentTarget;
13 51
(...skipping 16 matching lines...) Expand all
30 void preventDefault() native; 68 void preventDefault() native;
31 69
32 void stopImmediatePropagation() native; 70 void stopImmediatePropagation() native;
33 71
34 void stopPropagation() native; 72 void stopPropagation() native;
35 73
36 var dartObjectLocalStorage; 74 var dartObjectLocalStorage;
37 75
38 String get typeName() native; 76 String get typeName() native;
39 } 77 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMException.dart ('k') | client/dom/generated/src/frog/EventException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698