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

Unified Diff: net/socket/ssl_client_socket_openssl.cc

Issue 1149083013: Combine ChannelIDService::RequestHandle and ChannelIDServiceRequest classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove new test case and combine it with existing one Created 5 years, 6 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/socket/ssl_client_socket_openssl.h ('k') | net/ssl/channel_id_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_openssl.cc
diff --git a/net/socket/ssl_client_socket_openssl.cc b/net/socket/ssl_client_socket_openssl.cc
index 4c80290ae7d0e7516cdcc54a136d9b7cc4faaf98..d06f5ac48a67fd0e282b820a0269ed53e78aef18 100644
--- a/net/socket/ssl_client_socket_openssl.cc
+++ b/net/socket/ssl_client_socket_openssl.cc
@@ -513,7 +513,7 @@ void SSLClientSocketOpenSSL::Disconnect() {
channel_id_sent_ = false;
handshake_completed_ = false;
certificate_verified_ = false;
- channel_id_request_handle_.Cancel();
+ channel_id_request_.Cancel();
ssl_failure_state_ = SSL_FAILURE_NONE;
}
@@ -1031,7 +1031,7 @@ int SSLClientSocketOpenSSL::DoChannelIDLookup() {
host_and_port_.host(), &channel_id_key_,
base::Bind(&SSLClientSocketOpenSSL::OnHandshakeIOComplete,
base::Unretained(this)),
- &channel_id_request_handle_);
+ &channel_id_request_);
}
int SSLClientSocketOpenSSL::DoChannelIDLookupComplete(int result) {
« no previous file with comments | « net/socket/ssl_client_socket_openssl.h ('k') | net/ssl/channel_id_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698