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

Unified Diff: Source/modules/indexeddb/IDBOpenDBRequest.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/IDBObjectStore.idl ('k') | Source/modules/indexeddb/IDBOpenDBRequest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBOpenDBRequest.h
diff --git a/Source/modules/indexeddb/IDBOpenDBRequest.h b/Source/modules/indexeddb/IDBOpenDBRequest.h
index 2ed15be8fe70e9f2da6960afaae7c1387a28a20b..784d0d1ea5b5fd687d0e6e5bcb4e63a5e2dc1147 100644
--- a/Source/modules/indexeddb/IDBOpenDBRequest.h
+++ b/Source/modules/indexeddb/IDBOpenDBRequest.h
@@ -35,7 +35,7 @@ class IDBDatabaseCallbacks;
class IDBOpenDBRequest FINAL : public IDBRequest {
public:
- static IDBOpenDBRequest* create(ExecutionContext*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
+ static IDBOpenDBRequest* create(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
virtual ~IDBOpenDBRequest();
virtual void trace(Visitor*) OVERRIDE;
@@ -57,7 +57,7 @@ protected:
virtual bool shouldEnqueueEvent() const OVERRIDE;
private:
- IDBOpenDBRequest(ExecutionContext*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
+ IDBOpenDBRequest(ScriptState*, IDBDatabaseCallbacks*, int64_t transactionId, int64_t version);
Member<IDBDatabaseCallbacks> m_databaseCallbacks;
const int64_t m_transactionId;
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.idl ('k') | Source/modules/indexeddb/IDBOpenDBRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698