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

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

Issue 11828060: Roll libjingle 257:260. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 176188)
+++ content/renderer/media/mock_peer_connection_impl.h (working copy)
@@ -42,21 +42,8 @@
virtual bool GetStats(webrtc::StatsObserver* observer,
webrtc::MediaStreamTrackInterface* track) OVERRIDE;
virtual ReadyState ready_state() OVERRIDE;
- virtual bool StartIce(IceOptions options) OVERRIDE;
+ virtual SignalingState signaling_state() 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()
@@ -83,15 +70,13 @@
virtual IceState ice_state() OVERRIDE;
void AddRemoteStream(webrtc::MediaStreamInterface* stream);
- void SetReadyState(ReadyState state) { ready_state_ = state; }
+ void SetReadyState(ReadyState state) { signaling_state_ = state; }
void SetIceState(IceState state) { ice_state_ = state; }
const std::string& stream_label() const { return stream_label_; }
bool hint_audio() const { return hint_audio_; }
bool hint_video() const { return hint_video_; }
- Action action() const { return action_; }
const std::string& description_sdp() const { return description_sdp_; }
- IceOptions ice_options() const { return ice_options_; }
const std::string& sdp_mid() const { return sdp_mid_; }
int sdp_mline_index() const { return sdp_mline_index_; }
const std::string& ice_sdp() const { return ice_sdp_; }
@@ -116,13 +101,11 @@
scoped_ptr<webrtc::SessionDescriptionInterface> created_sessiondescription_;
bool hint_audio_;
bool hint_video_;
- Action action_;
std::string description_sdp_;
- IceOptions ice_options_;
std::string sdp_mid_;
int sdp_mline_index_;
std::string ice_sdp_;
- ReadyState ready_state_;
+ SignalingState signaling_state_;
IceState ice_state_;
DISALLOW_COPY_AND_ASSIGN(MockPeerConnectionImpl);
« 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