| Index: talk/app/webrtc/peerconnectionfactoryproxy.h
|
| diff --git a/talk/app/webrtc/peerconnectionfactoryproxy.h b/talk/app/webrtc/peerconnectionfactoryproxy.h
|
| index 2f5ddd68924e8c7ad5574cb15174032b2f1cbd2e..25befbbdf7af5b2dac76a9765fb02d177b854fa4 100644
|
| --- a/talk/app/webrtc/peerconnectionfactoryproxy.h
|
| +++ b/talk/app/webrtc/peerconnectionfactoryproxy.h
|
| @@ -32,18 +32,20 @@
|
|
|
| #include "talk/app/webrtc/peerconnectioninterface.h"
|
| #include "talk/app/webrtc/proxy.h"
|
| +#include "webrtc/base/sslidentity.h"
|
|
|
| namespace webrtc {
|
|
|
| BEGIN_PROXY_MAP(PeerConnectionFactory)
|
| PROXY_METHOD1(void, SetOptions, const Options&)
|
| - PROXY_METHOD5(rtc::scoped_refptr<PeerConnectionInterface>,
|
| + PROXY_METHOD6(rtc::scoped_refptr<PeerConnectionInterface>,
|
| CreatePeerConnection,
|
| const PeerConnectionInterface::RTCConfiguration&,
|
| const MediaConstraintsInterface*,
|
| PortAllocatorFactoryInterface*,
|
| - DTLSIdentityServiceInterface*,
|
| - PeerConnectionObserver*)
|
| + PeerConnectionObserver*,
|
| + DtlsIdentityStoreInterface*,
|
| + rtc::KeyType)
|
| PROXY_METHOD1(rtc::scoped_refptr<MediaStreamInterface>,
|
| CreateLocalMediaStream, const std::string&)
|
| PROXY_METHOD1(rtc::scoped_refptr<AudioSourceInterface>,
|
|
|