Index: content/renderer/media/mock_peer_connection_impl.cc |
diff --git a/content/renderer/media/mock_peer_connection_impl.cc b/content/renderer/media/mock_peer_connection_impl.cc |
index 09a164d390513c126930223c57ea208082864e6a..b362af910a1d9dff211ff6262f60eb3bd833e848 100644 |
--- a/content/renderer/media/mock_peer_connection_impl.cc |
+++ b/content/renderer/media/mock_peer_connection_impl.cc |
@@ -91,6 +91,57 @@ MockPeerConnectionImpl::SdpState MockPeerConnectionImpl::sdp_state() { |
return kSdpNew; |
} |
+void MockPeerConnectionImpl::StartIce(IceOptions options) { |
+ NOTIMPLEMENTED(); |
+} |
+ |
+webrtc::SessionDescriptionInterface* MockPeerConnectionImpl::CreateOffer( |
+ const webrtc::MediaHints& hints) { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+webrtc::SessionDescriptionInterface* MockPeerConnectionImpl::CreateAnswer( |
+ const webrtc::MediaHints& hints, |
+ const webrtc::SessionDescriptionInterface* offer) { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+bool MockPeerConnectionImpl::SetLocalDescription( |
+ Action action, |
+ webrtc::SessionDescriptionInterface* desc) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+bool MockPeerConnectionImpl::SetRemoteDescription( |
+ Action action, |
+ webrtc::SessionDescriptionInterface* desc) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+bool MockPeerConnectionImpl::ProcessIceMessage( |
+ const webrtc::IceCandidateInterface* ice_candidate) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+const webrtc::SessionDescriptionInterface* |
+MockPeerConnectionImpl::local_description() |
+ const { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+const webrtc::SessionDescriptionInterface* |
+MockPeerConnectionImpl::remote_description() |
+ const { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
void MockPeerConnectionImpl::AddRemoteStream(MediaStreamInterface* stream) { |
remote_streams_->AddStream(stream); |
} |