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

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

Issue 9103001: Revert "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
16 IDBIndex createIndex(String name, String keyPath) native; 14 IDBIndex createIndex(String name, String keyPath) native;
17 15
18 IDBRequest delete(IDBKey key) native; 16 IDBRequest delete(IDBKey key) native;
19 17
20 void deleteIndex(String name) native; 18 void deleteIndex(String name) native;
21 19
22 IDBRequest getObject(IDBKey key) native; 20 IDBRequest getObject(IDBKey key) native;
23 21
24 IDBIndex index(String name) native; 22 IDBIndex index(String name) native;
25 23
26 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ; 24 IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) native ;
27 25
28 IDBRequest put(String value, [IDBKey key = null]) native; 26 IDBRequest put(String value, [IDBKey key = null]) native;
29 27
30 var dartObjectLocalStorage; 28 var dartObjectLocalStorage;
31 29
32 String get typeName() native; 30 String get typeName() native;
33 } 31 }
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