| Index: net/socket/socket_test_util.h
|
| diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
|
| index a3c6df421491b2b0aee7d4e8c5e190120739efa9..9dbba5c1051e8a57b56d7cfa02a755f5df80cc12 100644
|
| --- a/net/socket/socket_test_util.h
|
| +++ b/net/socket/socket_test_util.h
|
| @@ -824,17 +824,15 @@ class ClientSocketPoolTest {
|
| PoolType* socket_pool,
|
| const std::string& group_name,
|
| RequestPriority priority,
|
| + ClientSocketPool::IgnoreLimits ignore_limits,
|
| const scoped_refptr<typename PoolType::SocketParams>& socket_params) {
|
| DCHECK(socket_pool);
|
| TestSocketRequest* request(
|
| new TestSocketRequest(&request_order_, &completion_count_));
|
| requests_.push_back(make_scoped_ptr(request));
|
| - int rv = request->handle()->Init(group_name,
|
| - socket_params,
|
| - priority,
|
| - request->callback(),
|
| - socket_pool,
|
| - BoundNetLog());
|
| + int rv = request->handle()->Init(group_name, socket_params, priority,
|
| + ignore_limits, request->callback(),
|
| + socket_pool, BoundNetLog());
|
| if (rv != ERR_IO_PENDING)
|
| request_order_.push_back(request);
|
| return rv;
|
| @@ -918,6 +916,7 @@ class MockTransportClientSocketPool : public TransportClientSocketPool {
|
| int RequestSocket(const std::string& group_name,
|
| const void* socket_params,
|
| RequestPriority priority,
|
| + IgnoreLimits ignore_limits,
|
| ClientSocketHandle* handle,
|
| const CompletionCallback& callback,
|
| const BoundNetLog& net_log) override;
|
| @@ -950,6 +949,7 @@ class MockSOCKSClientSocketPool : public SOCKSClientSocketPool {
|
| int RequestSocket(const std::string& group_name,
|
| const void* socket_params,
|
| RequestPriority priority,
|
| + IgnoreLimits ignore_limits,
|
| ClientSocketHandle* handle,
|
| const CompletionCallback& callback,
|
| const BoundNetLog& net_log) override;
|
|
|