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

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

Issue 9084005: Refresh dart:dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months 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 IDBObjectStore native "*IDBObjectStore" { 2 class IDBObjectStore native "*IDBObjectStore" {
3 3
4 String keyPath; 4 String keyPath;
5 5
6 String name; 6 String name;
7 7
8 IDBTransaction transaction; 8 IDBTransaction transaction;
9 9
10 IDBRequest add(String value, [IDBKey key = null]) native; 10 IDBRequest add(String value, [IDBKey key = null]) native;
11 11
12 IDBRequest clear() native; 12 IDBRequest clear() native;
13 13
14 IDBRequest count([IDBKeyRange range = null]) native;
15
14 IDBIndex createIndex(String name, String keyPath) native; 16 IDBIndex createIndex(String name, String keyPath) native;
15 17
16 IDBRequest delete(IDBKey key) native; 18 IDBRequest delete(IDBKey key) native;
17 19
18 void deleteIndex(String name) native; 20 void deleteIndex(String name) native;
19 21
20 IDBRequest getObject(IDBKey key) native; 22 IDBRequest getObject(IDBKey key) native;
21 23
22 IDBIndex index(String name) native; 24 IDBIndex index(String name) native;
23 25
24 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ; 26 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ;
25 27
26 IDBRequest put(String value, [IDBKey key = null]) native; 28 IDBRequest put(String value, [IDBKey key = null]) native;
27 29
28 var dartObjectLocalStorage; 30 var dartObjectLocalStorage;
29 31
30 String get typeName() native; 32 String get typeName() native;
31 } 33 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/IDBIndex.dart ('k') | client/dom/generated/src/frog/InjectedScriptHost.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698