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

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

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.h
===================================================================
--- content/renderer/media/mock_peer_connection_impl.h (revision 146359)
+++ content/renderer/media/mock_peer_connection_impl.h (working copy)
@@ -56,6 +56,20 @@
virtual const webrtc::SessionDescriptionInterface* remote_description()
const OVERRIDE;
+ // JSEP01 APIs
+ virtual void CreateOffer(CreateSessionDescriptionObserver* observer,
+ const SessionDescriptionOptions& options) OVERRIDE;
+ virtual void CreateAnswer(CreateSessionDescriptionObserver* observer,
+ const SessionDescriptionOptions& options) OVERRIDE;
+ virtual void SetLocalDescription(SetSessionDescriptionObserver* observer,
+ SessionDescriptionInterface* desc) OVERRIDE;
+ virtual void SetRemoteDescription(SetSessionDescriptionObserver* observer,
+ SessionDescriptionInterface* desc) OVERRIDE;
+ virtual bool UpdateIce(const IceServers& configuration,
+ IceOptions options) OVERRIDE;
+ virtual bool AddIceCandidate(const IceCandidateInterface* candidate) OVERRIDE;
+ virtual IceState ice_state() OVERRIDE;
+
void AddRemoteStream(MediaStreamInterface* stream);
void ClearStreamChangesCommitted() { stream_changes_committed_ = false; }
void SetReadyState(ReadyState state) { ready_state_ = state; }
« 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