Index: content/renderer/media/peer_connection_identity_store.h |
diff --git a/content/renderer/media/peer_connection_identity_store.h b/content/renderer/media/peer_connection_identity_store.h |
index 35d99c5a6c4766b665d669c19bfc7c7c59e142c0..1d5eb886ee4a5af5d9e861a4ea9f4adac99841f4 100644 |
--- a/content/renderer/media/peer_connection_identity_store.h |
+++ b/content/renderer/media/peer_connection_identity_store.h |
@@ -9,6 +9,7 @@ |
#include "base/single_thread_task_runner.h" |
#include "base/threading/thread_checker.h" |
#include "third_party/webrtc/api/dtlsidentitystore.h" |
+#include "third_party/webrtc/base/optional.h" |
#include "url/gurl.h" |
namespace content { |
@@ -28,6 +29,7 @@ class PeerConnectionIdentityStore |
// webrtc::DtlsIdentityStoreInterface override; |
void RequestIdentity( |
tommi (sloooow) - chröme
2016/03/04 09:55:40
can you make this private?
hbos_chromium
2016/03/08 15:02:10
This has been updated to be the implementation of
|
rtc::KeyParams key_params, |
+ rtc::Optional<uint64_t> expires_ms, |
const rtc::scoped_refptr<webrtc::DtlsIdentityRequestObserver>& observer) |
override; |
hbos_chromium
2016/03/04 09:26:31
The webrtc interface is updating to take |expires_
|