| 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; }
|
|
|