| Index: net/spdy/spdy_session_unittest.cc
|
| diff --git a/net/spdy/spdy_session_unittest.cc b/net/spdy/spdy_session_unittest.cc
|
| index 99d99a79f6fd61c65e70b9d5205e9b44996f12bb..f3dacede2f45f7ac5f393632107bb17ff0357064 100644
|
| --- a/net/spdy/spdy_session_unittest.cc
|
| +++ b/net/spdy/spdy_session_unittest.cc
|
| @@ -3057,10 +3057,11 @@ TEST_P(SpdySessionTest, CloseOneIdleConnectionWithAlias) {
|
| PRIVACY_MODE_DISABLED);
|
| HostResolver::RequestInfo info(key2.host_port_pair());
|
| AddressList addresses;
|
| + std::unique_ptr<HostResolver::Request> request;
|
| // Pre-populate the DNS cache, since a synchronous resolution is required in
|
| // order to create the alias.
|
| session_deps_.host_resolver->Resolve(info, DEFAULT_PRIORITY, &addresses,
|
| - CompletionCallback(), nullptr,
|
| + CompletionCallback(), &request,
|
| BoundNetLog());
|
| // Get a session for |key2|, which should return the session created earlier.
|
| base::WeakPtr<SpdySession> session2 =
|
|
|