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

Unified Diff: net/socket/socket_test_util.cc

Issue 12035105: Move client certificates retrieval logic out of the SSL sockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Linux Redux build Created 7 years, 11 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: net/socket/socket_test_util.cc
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc
index 6b0070b35bd58becf3460bd0b7e4facdbc3ea262..937dc6ce431a84200eaa6768df22c052d94b739f 100644
--- a/net/socket/socket_test_util.cc
+++ b/net/socket/socket_test_util.cc
@@ -1224,9 +1224,6 @@ 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;
- } else {
- cert_request_info->Reset();
}
Ryan Sleevi 2013/01/29 19:59:49 BUG: This change is not correct: 1) You should mat
ppi 2013/01/30 15:34:56 I see, thanks. Reverted in patch set 4. We will pr
}

Powered by Google App Engine
This is Rietveld 408576698