Index: net/socket/ssl_client_socket.h |
diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h |
index 61986be84cee0f162c84da6432c06b72f4ab0704..cb68f1415d60ca6ac7da70ce1fa625532661377e 100644 |
--- a/net/socket/ssl_client_socket.h |
+++ b/net/socket/ssl_client_socket.h |
@@ -70,18 +70,14 @@ class NET_EXPORT SSLClientSocket : public SSLSocket { |
// the first protocol in our list. |
}; |
- // Gets the SSL connection information of the socket. |
- // |
- // TODO(sergeyu): Move this method to the SSLSocket interface and |
- // implemented in SSLServerSocket too. |
- virtual void GetSSLInfo(SSLInfo* ssl_info) = 0; |
- |
// Gets the SSL CertificateRequest info of the socket after Connect failed |
// with ERR_SSL_CLIENT_AUTH_CERT_NEEDED. |
virtual void GetSSLCertRequestInfo( |
SSLCertRequestInfo* cert_request_info) = 0; |
// StreamSocket: |
+ virtual bool WasNpnNegotiated() const OVERRIDE; |
Ryan Sleevi
2012/07/11 22:50:43
Move 78+79 to 72
Put the interface implementation
Ryan Hamilton
2012/07/11 23:37:25
Done.
|
+ |
virtual NextProto GetNegotiatedProtocol() const OVERRIDE; |
// Get the application level protocol that we negotiated with the server. |