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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.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/RTCPeerConnection.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
index b2ff3324b92af5b2b69d89cd838b15895910465c..d491884e59eb539a16ae5708bc5bc9c3e8d3b97d 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
@@ -488,7 +488,7 @@ RTCPeerConnection::RTCPeerConnection(ExecutionContext* context,
WebMediaConstraints constraints,
ExceptionState& exceptionState)
: ActiveScriptWrappable(this),
- ActiveDOMObject(context),
+ SuspendableObject(context),
m_signalingState(SignalingStateStable),
m_iceGatheringState(ICEGatheringStateNew),
m_iceConnectionState(ICEConnectionStateNew),
@@ -1364,7 +1364,7 @@ const AtomicString& RTCPeerConnection::interfaceName() const {
}
ExecutionContext* RTCPeerConnection::getExecutionContext() const {
- return ActiveDOMObject::getExecutionContext();
+ return SuspendableObject::getExecutionContext();
}
void RTCPeerConnection::suspend() {
@@ -1494,7 +1494,7 @@ DEFINE_TRACE(RTCPeerConnection) {
visitor->trace(m_dispatchScheduledEventRunner);
visitor->trace(m_scheduledEvents);
EventTargetWithInlineData::trace(visitor);
- ActiveDOMObject::trace(visitor);
+ SuspendableObject::trace(visitor);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698