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

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

Issue 9466036: Fix parsing of DOMString[] in IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 _IDBObjectStoreJs extends _DOMTypeJs implements IDBObjectStore native "*ID BObjectStore" { 2 class _IDBObjectStoreJs extends _DOMTypeJs implements IDBObjectStore native "*ID BObjectStore" {
3 3
4 final String keyPath; 4 final String keyPath;
5 5
6 final String name; 6 final String name;
7 7
8 final _IDBTransactionJs transaction; 8 final _IDBTransactionJs transaction;
9 9
10 _IDBRequestJs add(Dynamic value, [_IDBKeyJs key = null]) native; 10 _IDBRequestJs add(Dynamic value, [_IDBKeyJs key = null]) native;
11 11
12 _IDBRequestJs clear() native; 12 _IDBRequestJs clear() native;
13 13
14 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native; 14 _IDBRequestJs count([_IDBKeyRangeJs range = null]) native;
15 15
16 _IDBIndexJs createIndex(String name, String keyPath) native; 16 _IDBIndexJs createIndex(String name, String keyPath) native;
17 17
18 _IDBRequestJs delete(_IDBKeyJs key) native; 18 _IDBRequestJs delete(var key_OR_keyRange) native;
19 19
20 void deleteIndex(String name) native; 20 void deleteIndex(String name) native;
21 21
22 _IDBRequestJs getObject(_IDBKeyJs key) native '''return this.get(key);'''; 22 _IDBRequestJs getObject(_IDBKeyJs key) native '''return this.get(key);''';
23 23
24 _IDBIndexJs index(String name) native; 24 _IDBIndexJs index(String name) native;
25 25
26 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native; 26 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native;
27 27
28 _IDBRequestJs put(Dynamic value, [_IDBKeyJs key = null]) native; 28 _IDBRequestJs put(Dynamic value, [_IDBKeyJs key = null]) native;
29 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/IDBDatabase.dart ('k') | client/dom/generated/src/frog/WebKitNamedFlow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698