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

Unified Diff: remoting/host/token_validator_base.cc

Issue 1882433002: Removing NSS files and USE_OPENSSL flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/token_validator_base.cc
diff --git a/remoting/host/token_validator_base.cc b/remoting/host/token_validator_base.cc
index 08c077ee960b4e15bb3bd3c4c5e601737110ed2c..99796421204d05850e3235f41b4f47a8f743a949 100644
--- a/remoting/host/token_validator_base.cc
+++ b/remoting/host/token_validator_base.cc
@@ -151,11 +151,9 @@ void TokenValidatorBase::OnCertificateRequested(
client_cert_store = new net::ClientCertStoreWin(cert_store);
#elif defined(OS_MACOSX)
client_cert_store = new net::ClientCertStoreMac();
-#elif defined(USE_OPENSSL)
- // OpenSSL does not use the ClientCertStore infrastructure.
- client_cert_store = nullptr;
#else
-#error Unknown platform.
+ // OpenSSL does not use the ClientCertStore infrastructure.
+ client_cert_store = nullptr;
#endif
// The callback is uncancellable, and GetClientCert requires selected_certs
// and client_cert_store to stay alive until the callback is called. So we
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | tools/copyright_scanner/third_party_files_whitelist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698