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

Side by Side Diff: client/dom/generated/src/frog/IDBRequest.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 IDBRequest native "*IDBRequest" { 2 class IDBRequest native "*IDBRequest" {
3 3
4 static final int DONE = 2;
5
6 static final int LOADING = 1;
7
4 int errorCode; 8 int errorCode;
5 9
6 int readyState; 10 int readyState;
7 11
8 IDBAny result; 12 IDBAny result;
9 13
10 IDBAny source; 14 IDBAny source;
11 15
12 IDBTransaction transaction; 16 IDBTransaction transaction;
13 17
14 String webkitErrorMessage; 18 String webkitErrorMessage;
15 19
16 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
17 21
18 bool dispatchEvent(Event evt) native; 22 bool dispatchEvent(Event evt) native;
19 23
20 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 24 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
21 25
22 var dartObjectLocalStorage; 26 var dartObjectLocalStorage;
23 27
24 String get typeName() native; 28 String get typeName() native;
25 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/IDBDatabaseException.dart ('k') | client/dom/generated/src/frog/IDBTransaction.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698