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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.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/IDBDatabase.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
index 61f88d8a12d0d69df4987a04dba71f722815798d..9105f59c6d861b55ef602defd6184bdc95f36672 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
@@ -101,8 +101,7 @@ IDBDatabase* IDBDatabase::create(ExecutionContext* context,
IDBDatabase::IDBDatabase(ExecutionContext* context,
std::unique_ptr<WebIDBDatabase> backend,
IDBDatabaseCallbacks* callbacks)
- : ActiveScriptWrappable(this),
- SuspendableObject(context),
+ : SuspendableObject(context),
m_backend(std::move(backend)),
m_databaseCallbacks(callbacks) {
m_databaseCallbacks->connect(this);

Powered by Google App Engine
This is Rietveld 408576698