| Index: net/socket/socket_test_util.h
|
| diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h
|
| index 4496a97d8892db74c793ae9433399de969f80d56..2e03d623de07e4750d39efabcdf4fd716e32e479 100644
|
| --- a/net/socket/socket_test_util.h
|
| +++ b/net/socket/socket_test_util.h
|
| @@ -25,6 +25,7 @@
|
| #include "base/time/time.h"
|
| #include "net/base/address_list.h"
|
| #include "net/base/io_buffer.h"
|
| +#include "net/base/load_timing_info.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/base/test_completion_callback.h"
|
| #include "net/http/http_auth_controller.h"
|
| @@ -945,9 +946,11 @@ class MockTransportClientSocketPool : public TransportClientSocketPool {
|
|
|
| void CancelRequest(const std::string& group_name,
|
| ClientSocketHandle* handle) override;
|
| - void ReleaseSocket(const std::string& group_name,
|
| - std::unique_ptr<StreamSocket> socket,
|
| - int id) override;
|
| + void ReleaseSocket(
|
| + const std::string& group_name,
|
| + std::unique_ptr<StreamSocket> socket,
|
| + int id,
|
| + const LoadTimingInfo::ConnectTiming& connect_timing) override;
|
|
|
| private:
|
| ClientSocketFactory* client_socket_factory_;
|
| @@ -978,9 +981,11 @@ class MockSOCKSClientSocketPool : public SOCKSClientSocketPool {
|
|
|
| void CancelRequest(const std::string& group_name,
|
| ClientSocketHandle* handle) override;
|
| - void ReleaseSocket(const std::string& group_name,
|
| - std::unique_ptr<StreamSocket> socket,
|
| - int id) override;
|
| + void ReleaseSocket(
|
| + const std::string& group_name,
|
| + std::unique_ptr<StreamSocket> socket,
|
| + int id,
|
| + const LoadTimingInfo::ConnectTiming& connect_timing) override;
|
|
|
| private:
|
| TransportClientSocketPool* const transport_pool_;
|
|
|