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

Unified Diff: third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.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/mediastream/MediaDevicesRequest.cpp
diff --git a/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.cpp b/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.cpp
index d5e3be71960f16ce46867672827c4e7165c124e3..2dfd01ede26738498b946ba10d17d6e34543b3e6 100644
--- a/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.cpp
+++ b/third_party/WebKit/Source/modules/mediastream/MediaDevicesRequest.cpp
@@ -43,7 +43,7 @@ MediaDevicesRequest* MediaDevicesRequest::create(
MediaDevicesRequest::MediaDevicesRequest(ScriptState* state,
UserMediaController* controller)
- : ActiveDOMObject(state->getExecutionContext()),
+ : SuspendableObject(state->getExecutionContext()),
m_controller(controller),
m_resolver(ScriptPromiseResolver::create(state)) {}
@@ -79,7 +79,7 @@ void MediaDevicesRequest::contextDestroyed() {
DEFINE_TRACE(MediaDevicesRequest) {
visitor->trace(m_controller);
visitor->trace(m_resolver);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698