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

Unified Diff: webrtc/api/peerconnectionfactory.cc

Issue 1766673002: DtlsIdentityStoreInterface::RequestIdentity: const& parameters (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Corrected a misspelling 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: webrtc/api/peerconnectionfactory.cc
diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc
index d63045f9ca9a2470cd1d8e1282b5c29f007d0029..fcdd0467753ba2d51e7f6bcadef3266a2f15d6c6 100644
--- a/webrtc/api/peerconnectionfactory.cc
+++ b/webrtc/api/peerconnectionfactory.cc
@@ -46,10 +46,10 @@ class DtlsIdentityStoreWrapper : public DtlsIdentityStoreInterface {
void RequestIdentity(
rtc::KeyParams key_params,
- rtc::Optional<uint64_t> expires,
+ const rtc::Optional<uint64_t>& expires_ms,
const rtc::scoped_refptr<webrtc::DtlsIdentityRequestObserver>&
observer) override {
- store_->RequestIdentity(key_params, expires, observer);
+ store_->RequestIdentity(key_params, expires_ms, observer);
}
private:

Powered by Google App Engine
This is Rietveld 408576698