diff options
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/client_socket.h | 5 | ||||
-rw-r--r-- | net/base/ssl_client_socket.h | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/net/base/client_socket.h b/net/base/client_socket.h index f2f39cd..97495dd 100644 --- a/net/base/client_socket.h +++ b/net/base/client_socket.h @@ -43,11 +43,6 @@ class ClientSocket : public Socket { // connection wasn't established or the connection is dead. virtual bool IsConnected() const = 0; - // TODO(eroman): Temporary for 3772 bug investigation. - virtual bool IsSSL() const { - return false; - } - #if defined(OS_LINUX) // Identical to posix system call getpeername(). // Needed by ssl_client_socket_nss. diff --git a/net/base/ssl_client_socket.h b/net/base/ssl_client_socket.h index 53412a5..dca5ef3 100644 --- a/net/base/ssl_client_socket.h +++ b/net/base/ssl_client_socket.h @@ -22,11 +22,6 @@ class SSLClientSocket : public ClientSocket { public: // Gets the SSL connection information of the socket. virtual void GetSSLInfo(SSLInfo* ssl_info) = 0; - - // TODO(eroman): Temporary for 3772 bug investigation. - virtual bool IsSSL() const { - return true; - } }; } // namespace net |