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

Unified Diff: third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl

Issue 10381128: Roll IDL to multivm@516 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
diff --git a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
index 8ced38cd1efa32ccb34f0628d3c6a928eb887fd2..9f9348531c3430d890d7cfd75e1bef5909f8500b 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
@@ -47,10 +47,17 @@ module storage {
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] DOMString direction)
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in [Optional] unsigned short direction)
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in [Optional] DOMString direction)
raises (IDBDatabaseException);
+
+ // FIXME: remove these when https://bugs.webkit.org/show_bug.cgi?id=85326 is fixed.
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKeyRange range, in unsigned short direction)
+ raises (IDBDatabaseException);
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in IDBKey key, in unsigned short direction)
+ raises (IDBDatabaseException);
+
IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
raises (IDBDatabaseException);
IDBIndex index(in DOMString name)
« no previous file with comments | « third_party/WebCore/Modules/indexeddb/IDBIndex.idl ('k') | third_party/WebCore/Modules/indexeddb/IDBRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698