| Index: net/http/http_transaction_test_util.h
|
| diff --git a/net/http/http_transaction_test_util.h b/net/http/http_transaction_test_util.h
|
| index 34d8a25aa657483adcf68e98dd4126c1f8b84ff9..01d259c1ccf19d19ebef38ce76d385e696cb2eb5 100644
|
| --- a/net/http/http_transaction_test_util.h
|
| +++ b/net/http/http_transaction_test_util.h
|
| @@ -318,6 +318,8 @@ class MockNetworkLayer : public HttpTransactionFactory,
|
| // The current time (will use clock_ if it is non NULL).
|
| base::Time Now();
|
|
|
| + void set_network_session(HttpNetworkSession* session) { session_ = session; }
|
| +
|
| private:
|
| int transaction_count_;
|
| bool done_reading_called_;
|
| @@ -329,6 +331,8 @@ class MockNetworkLayer : public HttpTransactionFactory,
|
| base::Clock* clock_;
|
|
|
| base::WeakPtr<MockNetworkTransaction> last_transaction_;
|
| +
|
| + HttpNetworkSession* session_;
|
| };
|
|
|
| //-----------------------------------------------------------------------------
|
|
|