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

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

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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 489f678ebf713bff828bb0d5fa30e8ca0c3c558e..93f27b2fde8d6b104cf2e4e358bc0dfef5d4608e 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
@@ -38,28 +38,28 @@ module storage {
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext] IDBRequest add(in SerializedScriptValue value, in [Optional] IDBKey key)
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBRequest delete(in IDBKeyRange keyRange)
+ [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBRequest delete(in IDBKeyRange? keyRange)
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBRequest delete(in IDBKey key)
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext] IDBRequest clear()
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange key)
+ [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKeyRange? key)
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] DOMString direction)
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange? range, in [Optional] DOMString direction)
raises (IDBDatabaseException);
[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)
+ [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange? range, in [Optional] 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)
+ IDBIndex createIndex(in DOMString name, in DOMString[]? keyPath, in [Optional] Dictionary options)
raises (IDBDatabaseException);
IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
raises (IDBDatabaseException);
@@ -67,7 +67,7 @@ module storage {
raises (IDBDatabaseException);
void deleteIndex(in DOMString name)
raises (IDBDatabaseException);
- [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyRange range)
+ [CallWith=ScriptExecutionContext] IDBRequest count(in [Optional] IDBKeyRange? range)
raises (IDBDatabaseException);
[CallWith=ScriptExecutionContext] IDBRequest count(in IDBKey key)
raises (IDBDatabaseException);
« no previous file with comments | « third_party/WebCore/Modules/indexeddb/IDBIndex.idl ('k') | third_party/WebCore/Modules/mediastream/MediaStreamTrackEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698