Chromium Code Reviews| Index: talk/app/webrtc/peerconnection.h |
| diff --git a/talk/app/webrtc/peerconnection.h b/talk/app/webrtc/peerconnection.h |
| index 016259661615ad8721fc7a9fb4aeb672588ecd56..af8190d4cda2bafa2e0866c9b1c858acf84e8a40 100644 |
| --- a/talk/app/webrtc/peerconnection.h |
| +++ b/talk/app/webrtc/peerconnection.h |
| @@ -61,7 +61,7 @@ class PeerConnection : public PeerConnectionInterface, |
| const PeerConnectionInterface::RTCConfiguration& configuration, |
| const MediaConstraintsInterface* constraints, |
| PortAllocatorFactoryInterface* allocator_factory, |
| - DTLSIdentityServiceInterface* dtls_identity_service, |
| + rtc::scoped_refptr<webrtc::DtlsCertificate> certificate, |
| PeerConnectionObserver* observer); |
| virtual rtc::scoped_refptr<StreamCollectionInterface> local_streams(); |
| virtual rtc::scoped_refptr<StreamCollectionInterface> remote_streams(); |
| @@ -157,14 +157,6 @@ class PeerConnection : public PeerConnectionInterface, |
| cricket::BaseSession::State state); |
| void ChangeSignalingState(SignalingState signaling_state); |
| - bool DoInitialize(IceTransportsType type, |
| - const StunConfigurations& stun_config, |
| - const TurnConfigurations& turn_config, |
| - const MediaConstraintsInterface* constraints, |
| - PortAllocatorFactoryInterface* allocator_factory, |
| - DTLSIdentityServiceInterface* dtls_identity_service, |
| - PeerConnectionObserver* observer); |
|
hbos
2015/08/04 12:50:21
Declared but not defined, that's why I'm removing
|
| - |
| rtc::Thread* signaling_thread() const { |
| return factory_->signaling_thread(); |
| } |