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/peerconnection/RTCStatsRequestImpl.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/peerconnection/RTCStatsRequestImpl.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCStatsRequestImpl.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCStatsRequestImpl.cpp
index 544ac47c5cff202c02d489ce9ff7d214be08fed0..82ed1c120a24c423fa76ba81b837fae5298871e2 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCStatsRequestImpl.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCStatsRequestImpl.cpp
@@ -44,7 +44,7 @@ RTCStatsRequestImpl::RTCStatsRequestImpl(ExecutionContext* context,
RTCPeerConnection* requester,
RTCStatsCallback* callback,
MediaStreamTrack* selector)
- : ActiveDOMObject(context),
+ : SuspendableObject(context),
m_successCallback(callback),
m_component(selector ? selector->component() : 0),
m_requester(requester) {
@@ -87,7 +87,7 @@ DEFINE_TRACE(RTCStatsRequestImpl) {
visitor->trace(m_component);
visitor->trace(m_requester);
RTCStatsRequest::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698