Index: content/renderer/media/rtc_peer_connection_handler.cc |
diff --git a/content/renderer/media/rtc_peer_connection_handler.cc b/content/renderer/media/rtc_peer_connection_handler.cc |
index 10c6c047f19ba15183c5d5ec17e9f265e90cfa73..3b315d2a584dd4746ba5c9a4dceae13b6e4cf51a 100644 |
--- a/content/renderer/media/rtc_peer_connection_handler.cc |
+++ b/content/renderer/media/rtc_peer_connection_handler.cc |
@@ -768,7 +768,7 @@ class RTCPeerConnectionHandler::Observer |
} |
void OnAddStreamImpl(scoped_ptr<RemoteMediaStreamImpl> stream) { |
- DCHECK(stream->webkit_stream().extraData()) << "Initialization not done"; |
+ DCHECK(stream->webkit_stream().getExtraData()) << "Initialization not done"; |
if (handler_) |
handler_->OnAddStream(std::move(stream)); |
} |
@@ -1498,7 +1498,7 @@ void RTCPeerConnectionHandler::OnAddStream( |
DCHECK(thread_checker_.CalledOnValidThread()); |
DCHECK(remote_streams_.find(stream->webrtc_stream().get()) == |
remote_streams_.end()); |
- DCHECK(stream->webkit_stream().extraData()) << "Initialization not done"; |
+ DCHECK(stream->webkit_stream().getExtraData()) << "Initialization not done"; |
TRACE_EVENT0("webrtc", "RTCPeerConnectionHandler::OnAddStreamImpl"); |
// Ownership is with remote_streams_ now. |