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

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

Issue 10513011: Roll IDL to multivm@576 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 9f9348531c3430d890d7cfd75e1bef5909f8500b..489f678ebf713bff828bb0d5fa30e8ca0c3c558e 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
@@ -29,9 +29,10 @@ module storage {
Conditional=INDEXED_DATABASE
] IDBObjectStore {
readonly attribute [TreatReturnedNullStringAs=Null] DOMString name;
- readonly attribute [TreatReturnedNullStringAs=Null] DOMString keyPath;
+ readonly attribute IDBAny keyPath;
readonly attribute DOMStringList indexNames;
readonly attribute IDBTransaction transaction;
+ readonly attribute boolean autoIncrement;
[CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValue value, in [Optional] IDBKey key)
raises (IDBDatabaseException);
@@ -58,6 +59,8 @@ module storage {
[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 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