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

Unified Diff: third_party/WebKit/Source/core/dom/MessagePort.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/core/dom/MessagePort.cpp
diff --git a/third_party/WebKit/Source/core/dom/MessagePort.cpp b/third_party/WebKit/Source/core/dom/MessagePort.cpp
index fca2b56427bd6fd9cf1479770643a502f63b39b0..1c7de32aef47de74cda8c3f11bef72a03d9eb06a 100644
--- a/third_party/WebKit/Source/core/dom/MessagePort.cpp
+++ b/third_party/WebKit/Source/core/dom/MessagePort.cpp
@@ -51,10 +51,7 @@ MessagePort* MessagePort::create(ExecutionContext& executionContext) {
}
MessagePort::MessagePort(ExecutionContext& executionContext)
- : ActiveScriptWrappable(this),
- SuspendableObject(&executionContext),
- m_started(false),
- m_closed(false) {}
+ : SuspendableObject(&executionContext), m_started(false), m_closed(false) {}
MessagePort::~MessagePort() {
DCHECK(!m_started || !isEntangled());
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryList.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698