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

Unified Diff: net/socket/socket_test_util.cc

Issue 2838243002: Remove client_certs from SSLCertRequestInfo. (Closed)
Patch Set: revert stray whitespace change Created 3 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 | « content/shell/browser/shell_content_browser_client.cc ('k') | net/ssl/client_cert_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/socket_test_util.cc
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc
index 57ca977f50fc6bd7508b667398fe3e6c5752a6eb..839890b35acda732645a79fa71f75d969a2fc169 100644
--- a/net/socket/socket_test_util.cc
+++ b/net/socket/socket_test_util.cc
@@ -1264,7 +1264,11 @@ void MockSSLClientSocket::GetSSLCertRequestInfo(
if (data_->cert_request_info) {
cert_request_info->host_and_port =
data_->cert_request_info->host_and_port;
- cert_request_info->client_certs = data_->cert_request_info->client_certs;
+ cert_request_info->is_proxy = data_->cert_request_info->is_proxy;
+ cert_request_info->cert_authorities =
+ data_->cert_request_info->cert_authorities;
+ cert_request_info->cert_key_types =
+ data_->cert_request_info->cert_key_types;
} else {
cert_request_info->Reset();
}
« no previous file with comments | « content/shell/browser/shell_content_browser_client.cc ('k') | net/ssl/client_cert_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698