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

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

Issue 10689180: Rolling libjingle to 158:159 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
===================================================================
--- content/renderer/media/mock_peer_connection_impl.cc (revision 146359)
+++ content/renderer/media/mock_peer_connection_impl.cc (working copy)
@@ -167,4 +167,45 @@
remote_streams_->AddStream(stream);
}
+void MockPeerConnectionImpl::CreateOffer(
+ CreateSessionDescriptionObserver* observer,
+ const SessionDescriptionOptions& options) {
+ NOTIMPLEMENTED();
+}
+
+void MockPeerConnectionImpl::CreateAnswer(
+ CreateSessionDescriptionObserver* observer,
+ const SessionDescriptionOptions& options) {
+ NOTIMPLEMENTED();
+}
+
+void MockPeerConnectionImpl::SetLocalDescription(
+ SetSessionDescriptionObserver* observer,
+ SessionDescriptionInterface* desc) {
+ NOTIMPLEMENTED();
+}
+
+void MockPeerConnectionImpl::SetRemoteDescription(
+ SetSessionDescriptionObserver* observer,
+ SessionDescriptionInterface* desc) {
+ NOTIMPLEMENTED();
+}
+
+bool MockPeerConnectionImpl::UpdateIce(const IceServers& configuration,
+ IceOptions options) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool MockPeerConnectionImpl::AddIceCandidate(
+ const IceCandidateInterface* candidate) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+PeerConnectionInterface::IceState MockPeerConnectionImpl::ice_state() {
+ NOTIMPLEMENTED();
+ return kIceNew;
+}
+
} // namespace webrtc
« no previous file with comments | « content/renderer/media/mock_peer_connection_impl.h ('k') | content/renderer/media/peer_connection_handler_jsep.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698