summaryrefslogtreecommitdiffstats
path: root/remoting/jingle_glue
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 16:48:46 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 16:48:46 +0000
commitefe22215cad3c4541a443339d948c226d54e44c5 (patch)
tree2e8f8489f6b89a594bdb891120324c730178a087 /remoting/jingle_glue
parentf18531246f728226c9b2a62f425dfb8db38af243 (diff)
downloadchromium_src-efe22215cad3c4541a443339d948c226d54e44c5.zip
chromium_src-efe22215cad3c4541a443339d948c226d54e44c5.tar.gz
chromium_src-efe22215cad3c4541a443339d948c226d54e44c5.tar.bz2
Remove SSLHostInfo.
BUG=105208 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144468 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/jingle_glue')
-rw-r--r--remoting/jingle_glue/ssl_socket_adapter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/jingle_glue/ssl_socket_adapter.cc b/remoting/jingle_glue/ssl_socket_adapter.cc
index f070c05..33b04d3 100644
--- a/remoting/jingle_glue/ssl_socket_adapter.cc
+++ b/remoting/jingle_glue/ssl_socket_adapter.cc
@@ -68,7 +68,7 @@ int SSLSocketAdapter::BeginSSL() {
ssl_socket_.reset(
net::ClientSocketFactory::GetDefaultFactory()->CreateSSLClientSocket(
transport_socket_, net::HostPortPair(hostname_, 443), ssl_config,
- NULL /* ssl_host_info */, context));
+ context));
int result = ssl_socket_->Connect(
base::Bind(&SSLSocketAdapter::OnConnected, base::Unretained(this)));