Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(678)

Unified Diff: content/renderer/media/peer_connection_identity_store.h

Issue 1740993002: RTCPeerConnection.generateCertificate: Optionally specify expiration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698