diff options
author | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-15 00:20:11 +0000 |
---|---|---|
committer | wtc@google.com <wtc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-15 00:20:11 +0000 |
commit | aaead5019627818c93693fdb6ec04d47b47c17f2 (patch) | |
tree | 6ff15880c597bb59a8c3def51d13ce492a4bb405 /net/build/net.vcproj | |
parent | 1ad083f293cd321fa7d7c8f14e71816571c6c54f (diff) | |
download | chromium_src-aaead5019627818c93693fdb6ec04d47b47c17f2.zip chromium_src-aaead5019627818c93693fdb6ec04d47b47c17f2.tar.gz chromium_src-aaead5019627818c93693fdb6ec04d47b47c17f2.tar.bz2 |
Turn SSLClientSocket into an interface.
The original ssl_client_socket.{h,cc} are renamed
ssl_client_socket_win.{h,cc}.
The new ssl_client_socket.h defines the SSLClientSocket
interface, which simply extends the ClientSocket interface
with a new GetSSLInfo method.
ClientSocketFactory::CreateSSLClientSocket returns
SSLClientSocket* instead of ClientSocket*.
Replace the SSL protocol version mask parameter to the
constructor and factory method by a SSLConfig parameter.
R=darin
Review URL: http://codereview.chromium.org/7304
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3387 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/build/net.vcproj')
-rw-r--r-- | net/build/net.vcproj | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/build/net.vcproj b/net/build/net.vcproj index b56b05f..b711b49 100644 --- a/net/build/net.vcproj +++ b/net/build/net.vcproj @@ -433,11 +433,15 @@ > </File> <File - RelativePath="..\base\ssl_client_socket.cc" + RelativePath="..\base\ssl_client_socket.h" > </File> <File - RelativePath="..\base\ssl_client_socket.h" + RelativePath="..\base\ssl_client_socket_win.cc" + > + </File> + <File + RelativePath="..\base\ssl_client_socket_win.h" > </File> <File |