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

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

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
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.idl ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBFactory.h
diff --git a/Source/modules/indexeddb/IDBFactory.h b/Source/modules/indexeddb/IDBFactory.h
index 36c29807ad8136f8d917f4220d5df9069d929108..06e69ce7454a940baaa14d545bd8892bcd57cf35 100644
--- a/Source/modules/indexeddb/IDBFactory.h
+++ b/Source/modules/indexeddb/IDBFactory.h
@@ -50,18 +50,18 @@ public:
~IDBFactory();
void trace(Visitor*);
- IDBRequest* getDatabaseNames(ExecutionContext*, ExceptionState&);
+ IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
- IDBOpenDBRequest* open(ExecutionContext*, const String& name, ExceptionState&);
- IDBOpenDBRequest* open(ExecutionContext*, const String& name, unsigned long long version, ExceptionState&);
- IDBOpenDBRequest* deleteDatabase(ExecutionContext*, const String& name, ExceptionState&);
+ IDBOpenDBRequest* open(ScriptState*, const String& name, ExceptionState&);
+ IDBOpenDBRequest* open(ScriptState*, const String& name, unsigned long long version, ExceptionState&);
+ IDBOpenDBRequest* deleteDatabase(ScriptState*, const String& name, ExceptionState&);
- short cmp(ExecutionContext*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
+ short cmp(ScriptState*, const ScriptValue& first, const ScriptValue& second, ExceptionState&);
private:
explicit IDBFactory(IndexedDBClient*);
- IDBOpenDBRequest* openInternal(ExecutionContext*, const String& name, int64_t version, ExceptionState&);
+ IDBOpenDBRequest* openInternal(ScriptState*, const String& name, int64_t version, ExceptionState&);
Member<IndexedDBClient> m_permissionClient;
};
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.idl ('k') | Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698