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

Side by Side Diff: client/dom/generated/src/frog/IDBCursor.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 IDBCursor native "*IDBCursor" { 2 class IDBCursor native "*IDBCursor" {
3 3
4 static final int NEXT = 0;
5
6 static final int NEXT_NO_DUPLICATE = 1;
7
8 static final int PREV = 2;
9
10 static final int PREV_NO_DUPLICATE = 3;
11
4 int direction; 12 int direction;
5 13
6 IDBKey key; 14 IDBKey key;
7 15
8 IDBKey primaryKey; 16 IDBKey primaryKey;
9 17
10 IDBAny source; 18 IDBAny source;
11 19
12 void continueFunction([IDBKey key = null]) native; 20 void continueFunction([IDBKey key = null]) native;
13 21
14 IDBRequest delete() native; 22 IDBRequest delete() native;
15 23
16 IDBRequest update(String value) native; 24 IDBRequest update(String value) native;
17 25
18 var dartObjectLocalStorage; 26 var dartObjectLocalStorage;
19 27
20 String get typeName() native; 28 String get typeName() native;
21 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLMediaElement.dart ('k') | client/dom/generated/src/frog/IDBDatabaseException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698