| Index: talk/app/webrtc/peerconnectioninterface.h
 | 
| diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h
 | 
| index b3a56006d41f7946e5da39823a2a9d47606e0c9c..ee81f7c91677847c01b2c09c9e78daa5344d770f 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.
 | 
| @@ -245,6 +247,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),
 | 
| 
 |