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

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,46 @@
remote_streams_->AddStream(stream);
}
+// TODO(perkj): Implement JSEP01 mock functions.
+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

Powered by Google App Engine
This is Rietveld 408576698