diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 20:55:31 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 20:55:31 +0000 |
commit | 22044e4de614b14e21abe9706e4c1460f9b06465 (patch) | |
tree | 193a6ed74a795682f4703d796d8d36570e97f121 | |
parent | 5f01963c24feaf8ce99d01036bd89ce1ddbf6b19 (diff) | |
download | chromium_src-22044e4de614b14e21abe9706e4c1460f9b06465.zip chromium_src-22044e4de614b14e21abe9706e4c1460f9b06465.tar.gz chromium_src-22044e4de614b14e21abe9706e4c1460f9b06465.tar.bz2 |
Fix the comments in the SslClientSocket subclasses
to reflect that that transport socket is required
to already be connected.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3020060
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54815 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/socket/ssl_client_socket_mac.h | 2 | ||||
-rw-r--r-- | net/socket/ssl_client_socket_nss.h | 2 | ||||
-rw-r--r-- | net/socket/ssl_client_socket_win.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/net/socket/ssl_client_socket_mac.h b/net/socket/ssl_client_socket_mac.h index 009df75..5166b33 100644 --- a/net/socket/ssl_client_socket_mac.h +++ b/net/socket/ssl_client_socket_mac.h @@ -26,7 +26,7 @@ class ClientSocketHandle; // An SSL client socket implemented with Secure Transport. class SSLClientSocketMac : public SSLClientSocket { public: - // Takes ownership of the transport_socket, which may already be connected. + // Takes ownership of the |transport_socket|, which must already be connected. // The given hostname will be compared with the name(s) in the server's // certificate during the SSL handshake. ssl_config specifies the SSL // settings. diff --git a/net/socket/ssl_client_socket_nss.h b/net/socket/ssl_client_socket_nss.h index 540a003..e35cb4ff 100644 --- a/net/socket/ssl_client_socket_nss.h +++ b/net/socket/ssl_client_socket_nss.h @@ -33,7 +33,7 @@ class X509Certificate; // An SSL client socket implemented with Mozilla NSS. class SSLClientSocketNSS : public SSLClientSocket { public: - // Takes ownership of the transport_socket, which may already be connected. + // Takes ownership of the |transport_socket|, which must already be connected. // The given hostname will be compared with the name(s) in the server's // certificate during the SSL handshake. ssl_config specifies the SSL // settings. diff --git a/net/socket/ssl_client_socket_win.h b/net/socket/ssl_client_socket_win.h index 05d2d0c..a44dca7 100644 --- a/net/socket/ssl_client_socket_win.h +++ b/net/socket/ssl_client_socket_win.h @@ -30,7 +30,7 @@ class BoundNetLog; // An SSL client socket implemented with the Windows Schannel. class SSLClientSocketWin : public SSLClientSocket { public: - // Takes ownership of the transport_socket, which may already be connected. + // Takes ownership of the |transport_socket|, which must already be connected. // The given hostname will be compared with the name(s) in the server's // certificate during the SSL handshake. ssl_config specifies the SSL // settings. |