Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: net/socket/ssl_client_socket_unittest.cc

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with TOT Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/socket/ssl_client_socket_unittest.cc
diff --git a/net/socket/ssl_client_socket_unittest.cc b/net/socket/ssl_client_socket_unittest.cc
index 809ae5ec0e29c405027e2303212ce3da71777105..74a720bea846e75870ab9ddfc79a21a25c6bd802 100644
--- a/net/socket/ssl_client_socket_unittest.cc
+++ b/net/socket/ssl_client_socket_unittest.cc
@@ -515,7 +515,7 @@ class SSLClientSocketTest : public PlatformTest {
scoped_ptr<ClientSocketHandle> connection(new ClientSocketHandle);
connection->SetSocket(transport_socket.Pass());
return socket_factory_->CreateSSLClientSocket(
- connection.Pass(), host_and_port, ssl_config, context_);
+ connection.Pass(), host_and_port, ssl_config, NULL, context_);
}
ClientSocketFactory* socket_factory_;
@@ -1540,6 +1540,7 @@ TEST_F(SSLClientSocketTest, ClientSocketHandleNotFromPool) {
socket_factory_->CreateSSLClientSocket(socket_handle.Pass(),
test_server.host_port_pair(),
kDefaultSSLConfig,
+ NULL,
context_));
EXPECT_FALSE(sock->IsConnected());

Powered by Google App Engine
This is Rietveld 408576698