| 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
|
|
|