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

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

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't re-implement List<>, causes code that dartc rejects due to static 'override' 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 "*IDBO bjectStore" { 2 class IDBObjectStoreJs extends DOMTypeJs implements IDBObjectStore native "*IDBO bjectStore" {
3 3
4 String get keyPath() native "return this.keyPath;"; 4 String get keyPath() native "return this.keyPath;";
5 5
6 String get name() native "return this.name;"; 6 String get name() native "return this.name;";
7 7
8 IDBTransactionJs get transaction() native "return this.transaction;"; 8 IDBTransactionJs get transaction() native "return this.transaction;";
9 9
10 IDBRequestJs add(String value, [IDBKeyJs key = null]) native; 10 IDBRequestJs add(Dynamic/*SerializedScriptValue*/ 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(IDBKeyJs key) native;
19 19
20 void deleteIndex(String name) native; 20 void deleteIndex(String name) native;
21 21
22 IDBRequestJs getObject(IDBKeyJs key) native; 22 IDBRequestJs getObject(IDBKeyJs key) native;
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]) na tive; 26 IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) na tive;
27 27
28 IDBRequestJs put(String value, [IDBKeyJs key = null]) native; 28 IDBRequestJs put(Dynamic/*SerializedScriptValue*/ value, [IDBKeyJs key = null] ) native;
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698