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

Unified Diff: Source/modules/indexeddb/IDBFactory.idl

Issue 295163005: Remove ScriptState::current() from IDBRequest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/modules/indexeddb/IDBFactory.idl
diff --git a/Source/modules/indexeddb/IDBFactory.idl b/Source/modules/indexeddb/IDBFactory.idl
index 1a851bef61e918ec50ada4ba5a2ac3f9efc21efb..e1f8038d2dd1c030824d103477412e2434f674c6 100644
--- a/Source/modules/indexeddb/IDBFactory.idl
+++ b/Source/modules/indexeddb/IDBFactory.idl
@@ -26,10 +26,10 @@
[
WillBeGarbageCollected
] interface IDBFactory {
- [CallWith=ExecutionContext, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
+ [CallWith=ScriptState, ImplementedAs=getDatabaseNames, RaisesException] IDBRequest webkitGetDatabaseNames();
- [CallWith=ExecutionContext, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
- [CallWith=ExecutionContext, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
+ [CallWith=ScriptState, RaisesException] IDBOpenDBRequest open(DOMString name, [EnforceRange] optional unsigned long long version);
+ [CallWith=ScriptState, RaisesException] IDBOpenDBRequest deleteDatabase(DOMString name);
- [CallWith=ExecutionContext, RaisesException] short cmp(any first, any second);
+ [CallWith=ScriptState, RaisesException] short cmp(any first, any second);
};

Powered by Google App Engine
This is Rietveld 408576698