| Index: net/http/http_stream_factory_impl_unittest.cc
|
| diff --git a/net/http/http_stream_factory_impl_unittest.cc b/net/http/http_stream_factory_impl_unittest.cc
|
| index 9ea8df492aa43761889b4caeea35f66c7f7f098f..94004385b88d382966781c6f825fd24b7b0733eb 100644
|
| --- a/net/http/http_stream_factory_impl_unittest.cc
|
| +++ b/net/http/http_stream_factory_impl_unittest.cc
|
| @@ -15,6 +15,7 @@
|
| #include "base/macros.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/run_loop.h"
|
| +#include "net/base/load_timing_info.h"
|
| #include "net/base/port_util.h"
|
| #include "net/base/test_completion_callback.h"
|
| #include "net/base/test_proxy_delegate.h"
|
| @@ -408,9 +409,11 @@ class CapturePreconnectsSocketPool : public ParentPool {
|
| ClientSocketHandle* handle) override {
|
| ADD_FAILURE();
|
| }
|
| - 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 {
|
| ADD_FAILURE();
|
| }
|
| void CloseIdleSockets() override { ADD_FAILURE(); }
|
|
|