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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp

Issue 2578193004: Remove ActiveScriptWrappableBase::m_scriptWrappable (Closed)
Patch Set: temp Created 4 years 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/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
index 8b78ea7864caa304813761ed07d41b996e47f761..0d549587b893d276d7fac53840a1d794d7980e7e 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
@@ -102,8 +102,7 @@ IDBTransaction::IDBTransaction(ScriptState* scriptState,
const HashSet<String>& scope,
WebIDBTransactionMode mode,
IDBDatabase* db)
- : ActiveScriptWrappable(this),
- SuspendableObject(scriptState->getExecutionContext()),
+ : SuspendableObject(scriptState->getExecutionContext()),
m_id(id),
m_database(db),
m_mode(mode),
@@ -127,8 +126,7 @@ IDBTransaction::IDBTransaction(ExecutionContext* executionContext,
IDBDatabase* db,
IDBOpenDBRequest* openDBRequest,
const IDBDatabaseMetadata& oldMetadata)
- : ActiveScriptWrappable(this),
- SuspendableObject(executionContext),
+ : SuspendableObject(executionContext),
m_id(id),
m_database(db),
m_openDBRequest(openDBRequest),

Powered by Google App Engine
This is Rietveld 408576698