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

Unified Diff: content/renderer/media/mock_peer_connection_impl.cc

Issue 9567007: libjingle roll 117:119 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months 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: 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);
}
« no previous file with comments | « content/renderer/media/mock_peer_connection_impl.h ('k') | content/renderer/media/peer_connection_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698