| Index: talk/app/webrtc/peerconnectioninterface.h
|
| diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h
|
| index ac6280fc24b54045e5f9f8750b3fcddff952ffcb..cf2c50de7ff908c57e25a85f15f944a047b3db6f 100644
|
| --- a/talk/app/webrtc/peerconnectioninterface.h
|
| +++ b/talk/app/webrtc/peerconnectioninterface.h
|
| @@ -81,6 +81,7 @@
|
| #include "talk/app/webrtc/umametrics.h"
|
| #include "webrtc/base/fileutils.h"
|
| #include "webrtc/base/network.h"
|
| +#include "webrtc/base/rtccertificate.h"
|
| #include "webrtc/base/sslstreamadapter.h"
|
| #include "webrtc/base/socketaddress.h"
|
|
|
| @@ -230,6 +231,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
|
| kTcpCandidatePolicyDisabled
|
| };
|
|
|
| + // TODO(hbos): Change into class with private data and public getters.
|
| struct RTCConfiguration {
|
| // TODO(pthatcher): Rename this ice_transport_type, but update
|
| // Chromium at the same time.
|
| @@ -242,6 +244,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
|
| TcpCandidatePolicy tcp_candidate_policy;
|
| int audio_jitter_buffer_max_packets;
|
| bool audio_jitter_buffer_fast_accelerate;
|
| + std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates;
|
|
|
| RTCConfiguration()
|
| : type(kAll),
|
|
|