| 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 f95ea511fa3a17985f9b717ea06375915ddd33c2..2f93a046d497268c46b7c5fe35082a33d594a81a 100644
|
| --- a/net/http/http_stream_factory_impl_unittest.cc
|
| +++ b/net/http/http_stream_factory_impl_unittest.cc
|
| @@ -11,6 +11,7 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "base/run_loop.h"
|
| #include "net/base/port_util.h"
|
| #include "net/base/test_completion_callback.h"
|
| @@ -24,6 +25,7 @@
|
| #include "net/http/http_network_session_peer.h"
|
| #include "net/http/http_network_transaction.h"
|
| #include "net/http/http_request_info.h"
|
| +#include "net/http/http_response_info.h"
|
| #include "net/http/http_server_properties.h"
|
| #include "net/http/http_server_properties_impl.h"
|
| #include "net/http/http_stream.h"
|
| @@ -115,7 +117,8 @@ class MockWebSocketHandshakeStream : public WebSocketHandshakeStreamBase {
|
| ADD_FAILURE();
|
| return ERR_NOT_IMPLEMENTED;
|
| }
|
| - void Drain(HttpNetworkSession* session) override {}
|
| + void Drain(HttpNetworkSession* session,
|
| + scoped_ptr<HttpResponseInfo> response_info) override {}
|
| void PopulateNetErrorDetails(NetErrorDetails* details) override { return; }
|
| void SetPriority(RequestPriority priority) override {}
|
| UploadProgress GetUploadProgress() const override { return UploadProgress(); }
|
|
|