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

Unified Diff: Modules/indexeddb/IDBObjectStore.idl

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. Created 7 years, 8 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
« no previous file with comments | « Modules/indexeddb/IDBKeyRange.idl ('k') | Modules/indexeddb/IDBOpenDBRequest.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Modules/indexeddb/IDBObjectStore.idl
diff --git a/Modules/indexeddb/IDBObjectStore.idl b/Modules/indexeddb/IDBObjectStore.idl
index 46603225a712623b2eba9307e77e51eab521f326..700cf178a1084e7584fb77373a0d9dd1fd8d880d 100644
--- a/Modules/indexeddb/IDBObjectStore.idl
+++ b/Modules/indexeddb/IDBObjectStore.idl
@@ -24,8 +24,6 @@
*/
[
- Conditional=INDEXED_DATABASE,
- JSNoStaticTables,
ImplementationLacksVTable
] interface IDBObjectStore {
[TreatReturnedNullStringAs=Null] readonly attribute DOMString name;
@@ -53,9 +51,9 @@
[CallWith=ScriptExecutionContext] IDBRequest openCursor(in any key, in [Optional] DOMString direction)
raises (DOMException);
- [CallWith=ScriptExecutionContext, JSCustom] IDBIndex createIndex(in DOMString name, in sequence<DOMString> keyPath, in [Optional] Dictionary options)
+ [CallWith=ScriptExecutionContext] IDBIndex createIndex(in DOMString name, in sequence<DOMString> keyPath, in [Optional] Dictionary options)
raises (DOMException);
- [CallWith=ScriptExecutionContext, JSCustom] 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 (DOMException);
IDBIndex index(in DOMString name)
raises (DOMException);
« no previous file with comments | « Modules/indexeddb/IDBKeyRange.idl ('k') | Modules/indexeddb/IDBOpenDBRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698