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

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

Issue 10831389: Roll IDL to mutlivm@775. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 97a9062ef845120823a2b1b530e1008501f16dc7..d3a8af62a98d9ce5ce9ee318067c9d49d0970de8 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
@@ -29,7 +29,7 @@ module storage {
Conditional=INDEXED_DATABASE
] IDBObjectStore {
readonly attribute [TreatReturnedNullStringAs=Null] DOMString name;
- readonly attribute IDBAny keyPath;
+ readonly attribute [ImplementedAs=keyPathAny] IDBAny keyPath;
readonly attribute DOMStringList indexNames;
readonly attribute IDBTransaction transaction;
readonly attribute boolean autoIncrement;
@@ -59,9 +59,9 @@ 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)
+ [CallWith=ScriptExecutionContext] 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)
+ [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in DOMString keyPath, in [Optional] Dictionary options)
raises (IDBDatabaseException);
IDBIndex index(in DOMString name)
raises (IDBDatabaseException);
« no previous file with comments | « third_party/WebCore/Modules/indexeddb/IDBIndex.idl ('k') | third_party/WebCore/Modules/indexeddb/IDBOpenDBRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698