Index: net/socket/ssl_client_socket.h |
diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h |
index a43e58cc26b852fb86d92a1a5ac7c4e7c357b286..c06f294da48c2ee3e1a7a3f9fae9f21ae263535a 100644 |
--- a/net/socket/ssl_client_socket.h |
+++ b/net/socket/ssl_client_socket.h |
@@ -70,7 +70,6 @@ class NET_EXPORT SSLClientSocket : public SSLSocket { |
// connection. |
enum NextProtoStatus { |
// WARNING: These values are serialized to disk. Don't change them. |
- |
kNextProtoUnsupported = 0, // The server doesn't support NPN. |
kNextProtoNegotiated = 1, // We agreed on a protocol. |
kNextProtoNoOverlap = 2, // No protocols in common. We requested |
@@ -83,8 +82,7 @@ class NET_EXPORT SSLClientSocket : public SSLSocket { |
// 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; |
+ virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) = 0; |
// Get the application level protocol that we negotiated with the server. |
// *proto is set to the resulting protocol (n.b. that the string may have |