Chromium Code Reviews| 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..cdd0ec29836e145504aa9f1f3e78c3d98a65de15 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" |
|
hbos_chromium
2016/04/13 17:03:08
This can be removed though! I can do so before lan
|
| #include "url/gurl.h" |
| namespace content { |
| @@ -27,7 +28,8 @@ class PeerConnectionIdentityStore |
| // webrtc::DtlsIdentityStoreInterface override; |
| void RequestIdentity( |
| - rtc::KeyParams key_params, |
| + const rtc::KeyParams& key_params, |
| + const rtc::Optional<uint64_t>& expires_ms, |
| const rtc::scoped_refptr<webrtc::DtlsIdentityRequestObserver>& observer) |
| override; |