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/webmidi/MIDIAccess.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/MIDIAccess.cpp
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIAccess.cpp b/third_party/WebKit/Source/modules/webmidi/MIDIAccess.cpp
index 3f4ae3780e3414d51e30cceb1e5a17d22a8fc29f..21bf2ee89403a9b7154ccf43a96a9e672a70836c 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIAccess.cpp
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIAccess.cpp
@@ -65,7 +65,7 @@ MIDIAccess::MIDIAccess(
const Vector<MIDIAccessInitializer::PortDescriptor>& ports,
ExecutionContext* executionContext)
: ActiveScriptWrappable(this),
- ActiveDOMObject(executionContext),
+ SuspendableObject(executionContext),
m_accessor(std::move(accessor)),
m_sysexEnabled(sysexEnabled),
m_hasPendingActivity(false) {
@@ -230,7 +230,7 @@ DEFINE_TRACE(MIDIAccess) {
visitor->trace(m_inputs);
visitor->trace(m_outputs);
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698