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

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

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.h
diff --git a/content/renderer/media/mock_peer_connection_impl.h b/content/renderer/media/mock_peer_connection_impl.h
index 9f20e8b24c8de25331f23238649d02ecaeb44fd5..9192e2a23d3508a1601769ffad04978c6215e539 100644
--- a/content/renderer/media/mock_peer_connection_impl.h
+++ b/content/renderer/media/mock_peer_connection_impl.h
@@ -32,6 +32,25 @@ class MockPeerConnectionImpl : public PeerConnectionInterface {
virtual void Close() OVERRIDE;
virtual ReadyState ready_state() OVERRIDE;
virtual SdpState sdp_state() OVERRIDE;
+ virtual void StartIce(IceOptions options) OVERRIDE;
+
+ virtual webrtc::SessionDescriptionInterface* CreateOffer(
+ const webrtc::MediaHints& hints) OVERRIDE;
+ virtual webrtc::SessionDescriptionInterface* CreateAnswer(
+ const webrtc::MediaHints& hints,
+ const webrtc::SessionDescriptionInterface* offer) OVERRIDE;
+ virtual bool SetLocalDescription(
+ Action action,
+ webrtc::SessionDescriptionInterface* desc) OVERRIDE;
+ virtual bool SetRemoteDescription(
+ Action action,
+ webrtc::SessionDescriptionInterface* desc) OVERRIDE;
+ virtual bool ProcessIceMessage(
+ const webrtc::IceCandidateInterface* ice_candidate) OVERRIDE;
+ virtual const webrtc::SessionDescriptionInterface* local_description()
+ const OVERRIDE;
+ virtual const webrtc::SessionDescriptionInterface* remote_description()
+ const OVERRIDE;
void AddRemoteStream(MediaStreamInterface* stream);
void ClearStreamChangesCommitted() { stream_changes_committed_ = false; }
« no previous file with comments | « content/renderer/media/mock_media_stream_dependency_factory.cc ('k') | content/renderer/media/mock_peer_connection_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698