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

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

Issue 12207107: Update libjingle 273:277. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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
===================================================================
--- content/renderer/media/mock_peer_connection_impl.cc (revision 181693)
+++ content/renderer/media/mock_peer_connection_impl.cc (working copy)
@@ -288,7 +288,8 @@
const MediaConstraintsInterface* constraints) {
DCHECK(observer);
created_sessiondescription_.reset(
- dependency_factory_->CreateSessionDescription("unknown", kDummyOffer));
+ dependency_factory_->CreateSessionDescription("unknown", kDummyOffer,
+ NULL));
}
void MockPeerConnectionImpl::CreateAnswer(
@@ -296,7 +297,8 @@
const MediaConstraintsInterface* constraints) {
DCHECK(observer);
created_sessiondescription_.reset(
- dependency_factory_->CreateSessionDescription("unknown", kDummyAnswer));
+ dependency_factory_->CreateSessionDescription("unknown", kDummyAnswer,
+ NULL));
}
void MockPeerConnectionImpl::SetLocalDescriptionWorker(
@@ -330,4 +332,16 @@
return ice_state_;
}
+PeerConnectionInterface::IceConnectionState
+ MockPeerConnectionImpl::ice_connection_state() {
+ NOTIMPLEMENTED();
+ return PeerConnectionInterface::kIceConnectionNew;
+}
+
+PeerConnectionInterface::IceGatheringState
+ MockPeerConnectionImpl::ice_gathering_state() {
+ NOTIMPLEMENTED();
+ return PeerConnectionInterface::kIceGatheringNew;
+}
+
} // namespace content
« no previous file with comments | « content/renderer/media/mock_peer_connection_impl.h ('k') | content/renderer/media/peer_connection_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698