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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIPort.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/modules/webmidi/MIDIPort.cpp
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIPort.cpp b/third_party/WebKit/Source/modules/webmidi/MIDIPort.cpp
index 925b013b54974a9c70e98accebaa5de0b73a7761..85ec5fd1f2c21c7c9ab2c5b0b95f36d81d3efcb9 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIPort.cpp
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIPort.cpp
@@ -47,7 +47,7 @@ MIDIPort::MIDIPort(MIDIAccess* access,
const String& version,
PortState state)
: ActiveScriptWrappable(this),
- ActiveDOMObject(access->getExecutionContext()),
+ SuspendableObject(access->getExecutionContext()),
m_id(id),
m_manufacturer(manufacturer),
m_name(name),
@@ -164,7 +164,7 @@ void MIDIPort::contextDestroyed() {
DEFINE_TRACE(MIDIPort) {
visitor->trace(m_access);
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
DEFINE_TRACE_WRAPPERS(MIDIPort) {

Powered by Google App Engine
This is Rietveld 408576698