| Index: net/http/http_network_transaction_unittest.cc
|
| diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc
|
| index be94493558b4b68e045781d923632249df4c4c27..dc02ec56069478ee972b45885c8fe98d77d7d4fd 100644
|
| --- a/net/http/http_network_transaction_unittest.cc
|
| +++ b/net/http/http_network_transaction_unittest.cc
|
| @@ -12193,8 +12193,8 @@ TEST_P(HttpNetworkTransactionTest, GetFullRequestHeadersIncludesExtraHeader) {
|
|
|
| namespace {
|
|
|
| -// Fake HttpStreamBase that simply records calls to SetPriority().
|
| -class FakeStream : public HttpStreamBase,
|
| +// Fake HttpStream that simply records calls to SetPriority().
|
| +class FakeStream : public HttpStream,
|
| public base::SupportsWeakPtr<FakeStream> {
|
| public:
|
| explicit FakeStream(RequestPriority priority) : priority_(priority) {}
|
| @@ -12274,6 +12274,10 @@ class FakeStream : public HttpStreamBase,
|
|
|
| void SetPriority(RequestPriority priority) override { priority_ = priority; }
|
|
|
| + UploadProgress GetUploadProgress() const override { return UploadProgress(); }
|
| +
|
| + HttpStream* RenewStreamForAuth() override { return NULL; }
|
| +
|
| private:
|
| RequestPriority priority_;
|
|
|
|
|