| Index: net/socket/transport_client_socket_pool_unittest.cc
|
| diff --git a/net/socket/transport_client_socket_pool_unittest.cc b/net/socket/transport_client_socket_pool_unittest.cc
|
| index 236adcd78f5fd9f89460998bff00b38ce7178cfa..5a61d00c977a2de4eb4e1893ab3de8f4dbad3166 100644
|
| --- a/net/socket/transport_client_socket_pool_unittest.cc
|
| +++ b/net/socket/transport_client_socket_pool_unittest.cc
|
| @@ -365,10 +365,10 @@ class TransportClientSocketPoolTest : public testing::Test {
|
| ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled(true)),
|
| params_(
|
| new TransportSocketParams(HostPortPair("www.google.com", 80),
|
| - kDefaultPriority, GURL(), false, false)),
|
| + kDefaultPriority, false, false)),
|
| low_params_(
|
| new TransportSocketParams(HostPortPair("www.google.com", 80),
|
| - LOW, GURL(), false, false)),
|
| + LOW, false, false)),
|
| histograms_(new ClientSocketPoolHistograms("TCPUnitTest")),
|
| host_resolver_(new MockHostResolver),
|
| pool_(kMaxSockets,
|
| @@ -386,7 +386,7 @@ class TransportClientSocketPoolTest : public testing::Test {
|
|
|
| int StartRequest(const std::string& group_name, RequestPriority priority) {
|
| scoped_refptr<TransportSocketParams> params(new TransportSocketParams(
|
| - HostPortPair("www.google.com", 80), MEDIUM, GURL(), false, false));
|
| + HostPortPair("www.google.com", 80), MEDIUM, false, false));
|
| return test_base_.StartRequestUsingPool(
|
| &pool_, group_name, priority, params);
|
| }
|
| @@ -520,7 +520,7 @@ TEST_F(TransportClientSocketPoolTest, InitHostResolutionFailure) {
|
| ClientSocketHandle handle;
|
| HostPortPair host_port_pair("unresolvable.host.name", 80);
|
| scoped_refptr<TransportSocketParams> dest(new TransportSocketParams(
|
| - host_port_pair, kDefaultPriority, GURL(), false, false));
|
| + host_port_pair, kDefaultPriority, false, false));
|
| EXPECT_EQ(ERR_IO_PENDING,
|
| handle.Init("a", dest, kDefaultPriority, &callback, &pool_,
|
| BoundNetLog()));
|
| @@ -780,7 +780,7 @@ class RequestSocketCallback : public CallbackRunner< Tuple1<int> > {
|
| }
|
| within_callback_ = true;
|
| scoped_refptr<TransportSocketParams> dest(new TransportSocketParams(
|
| - HostPortPair("www.google.com", 80), LOWEST, GURL(), false, false));
|
| + HostPortPair("www.google.com", 80), LOWEST, false, false));
|
| int rv = handle_->Init("a", dest, LOWEST, this, pool_, BoundNetLog());
|
| EXPECT_EQ(OK, rv);
|
| }
|
| @@ -801,7 +801,7 @@ TEST_F(TransportClientSocketPoolTest, RequestTwice) {
|
| ClientSocketHandle handle;
|
| RequestSocketCallback callback(&handle, &pool_);
|
| scoped_refptr<TransportSocketParams> dest(new TransportSocketParams(
|
| - HostPortPair("www.google.com", 80), LOWEST, GURL(), false, false));
|
| + HostPortPair("www.google.com", 80), LOWEST, false, false));
|
| int rv = handle.Init("a", dest, LOWEST, &callback, &pool_,
|
| BoundNetLog());
|
| ASSERT_EQ(ERR_IO_PENDING, rv);
|
|
|