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

Unified Diff: third_party/WebKit/Source/core/dom/MessagePort.cpp

Issue 2567913002: Rename ActiveDOMObject to SuspendableObject (Closed)
Patch Set: 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 44b3a663ae50d39e2cb634121b774eaa2deb7430..fca2b56427bd6fd9cf1479770643a502f63b39b0 100644
--- a/third_party/WebKit/Source/core/dom/MessagePort.cpp
+++ b/third_party/WebKit/Source/core/dom/MessagePort.cpp
@@ -52,7 +52,7 @@ MessagePort* MessagePort::create(ExecutionContext& executionContext) {
MessagePort::MessagePort(ExecutionContext& executionContext)
: ActiveScriptWrappable(this),
- ActiveDOMObject(&executionContext),
+ SuspendableObject(&executionContext),
m_started(false),
m_closed(false) {}
@@ -291,7 +291,7 @@ MessagePortArray* MessagePort::entanglePorts(
}
DEFINE_TRACE(MessagePort) {
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
EventTargetWithInlineData::trace(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698