diff options
author | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-05 00:15:45 +0000 |
---|---|---|
committer | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-05 00:15:45 +0000 |
commit | 7b822b2be3e9eff10ffb9065f2449678fc0aab59 (patch) | |
tree | 327115bd0d34676b82470838697133ae54b3f97f /net/base/ssl_client_socket.h | |
parent | d5af37154930195aa20ca0f6346f5c5f4bb54eda (diff) | |
download | chromium_src-7b822b2be3e9eff10ffb9065f2449678fc0aab59.zip chromium_src-7b822b2be3e9eff10ffb9065f2449678fc0aab59.tar.gz chromium_src-7b822b2be3e9eff10ffb9065f2449678fc0aab59.tar.bz2 |
Miscellaneous changes (mostly cleanup) from my code review.
R=darin@google.com
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_client_socket.h')
-rw-r--r-- | net/base/ssl_client_socket.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/ssl_client_socket.h b/net/base/ssl_client_socket.h index 599b488..3e1779f 100644 --- a/net/base/ssl_client_socket.h +++ b/net/base/ssl_client_socket.h @@ -35,12 +35,16 @@ #include <windows.h> #include <security.h> +#include <string> + #include "base/scoped_ptr.h" #include "net/base/client_socket.h" #include "net/base/completion_callback.h" namespace net { +// A client socket that uses SSL as the transport layer. +// // NOTE: The SSL handshake occurs within the Connect method after a TCP // connection is established. If a SSL error occurs during the handshake, // Connect will fail. The consumer may choose to ignore certain SSL errors, |