| 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 0b5da73fdfc6306de20a2d17d59ac86407cfc968..c43de77b699ba9b1255242a3cfcb6f535979335f 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp
|
| @@ -1354,7 +1354,7 @@ void RTCPeerConnection::didAddRemoteDataChannel(
|
| }
|
|
|
| void RTCPeerConnection::releasePeerConnectionHandler() {
|
| - stop();
|
| + contextDestroyed();
|
| }
|
|
|
| void RTCPeerConnection::closePeerConnection() {
|
| @@ -1378,7 +1378,7 @@ void RTCPeerConnection::resume() {
|
| m_dispatchScheduledEventRunner->resume();
|
| }
|
|
|
| -void RTCPeerConnection::stop() {
|
| +void RTCPeerConnection::contextDestroyed() {
|
| if (m_stopped)
|
| return;
|
|
|
|
|