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

Side by Side Diff: client/html/generated/html/frog/IDBObjectStore.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _IDBObjectStoreImpl implements IDBObjectStore native "*IDBObjectStore" {
3
4 final List<String> indexNames;
5
6 final String keyPath;
7
8 final String name;
9
10 final _IDBTransactionImpl transaction;
11
12 _IDBRequestImpl add(Dynamic value, [_IDBKeyImpl key = null]) native;
13
14 _IDBRequestImpl clear() native;
15
16 _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native;
17
18 _IDBIndexImpl createIndex(String name, String keyPath) native;
19
20 _IDBRequestImpl delete(_IDBKeyImpl key) native;
21
22 void deleteIndex(String name) native;
23
24 _IDBRequestImpl getObject(_IDBKeyImpl key) native;
25
26 _IDBIndexImpl index(String name) native;
27
28 _IDBRequestImpl openCursor([_IDBKeyRangeImpl range = null, int direction = nul l]) native;
29
30 _IDBRequestImpl put(Dynamic value, [_IDBKeyImpl key = null]) native;
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698