| Index: net/socket/ssl_client_socket_win.cc | 
| diff --git a/net/socket/ssl_client_socket_win.cc b/net/socket/ssl_client_socket_win.cc | 
| index 4e61c6ffffbda3308e708f70a0fc44a3ea1c7a9f..b2054eb5bd50b8ffb9ed18907d6250e55b5bf6da 100644 | 
| --- a/net/socket/ssl_client_socket_win.cc | 
| +++ b/net/socket/ssl_client_socket_win.cc | 
| @@ -412,7 +412,7 @@ void SSLClientSocketWin::GetSSLInfo(SSLInfo* ssl_info) { | 
| ssl_info->public_key_hashes = server_cert_verify_result_.public_key_hashes; | 
| ssl_info->is_issued_by_known_root = | 
| server_cert_verify_result_.is_issued_by_known_root; | 
| -  ssl_info->client_cert_sent = WasOriginBoundCertSent() || | 
| +  ssl_info->client_cert_sent = WasDomainBoundCertSent() || | 
| (ssl_config_.send_client_cert && ssl_config_.client_cert); | 
| SecPkgContext_ConnectionInfo connection_info; | 
| SECURITY_STATUS status = QueryContextAttributes( | 
| @@ -555,7 +555,7 @@ SSLClientSocketWin::GetNextProto(std::string* proto, | 
| return kNextProtoUnsupported; | 
| } | 
|  | 
| -OriginBoundCertService* SSLClientSocketWin::GetOriginBoundCertService() const { | 
| +ServerBoundCertService* SSLClientSocketWin::GetServerBoundCertService() const { | 
| return NULL; | 
| } | 
|  | 
|  |