summaryrefslogtreecommitdiffstats
path: root/net/base
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-04 19:26:03 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-04 19:26:03 +0000
commit9a02ce35a50ff0c4a24121274652cf41a01a04b0 (patch)
treef0b33b9c7c505badd8fb64dc2394f1740cc748ac /net/base
parent5e76896c80016fb6aae4a00c2232276935008b9a (diff)
downloadchromium_src-9a02ce35a50ff0c4a24121274652cf41a01a04b0.zip
chromium_src-9a02ce35a50ff0c4a24121274652cf41a01a04b0.tar.gz
chromium_src-9a02ce35a50ff0c4a24121274652cf41a01a04b0.tar.bz2
Remove the debugging instrumentation.
Review URL: http://codereview.chromium.org/9304 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4623 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r--net/base/client_socket.h5
-rw-r--r--net/base/ssl_client_socket.h5
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