| Index: net/http/http_transaction_test_util.cc
|
| diff --git a/net/http/http_transaction_test_util.cc b/net/http/http_transaction_test_util.cc
|
| index 0bee91f836e8b77549a7612de693cdcffed42781..78c90960be7430f4fb3e8fe0bf749c70ced1326b 100644
|
| --- a/net/http/http_transaction_test_util.cc
|
| +++ b/net/http/http_transaction_test_util.cc
|
| @@ -504,8 +504,8 @@ MockNetworkLayer::MockNetworkLayer()
|
| done_reading_called_(false),
|
| stop_caching_called_(false),
|
| last_create_transaction_priority_(DEFAULT_PRIORITY),
|
| - clock_(nullptr) {
|
| -}
|
| + clock_(nullptr),
|
| + session_(nullptr) {}
|
|
|
| MockNetworkLayer::~MockNetworkLayer() {}
|
|
|
| @@ -534,7 +534,7 @@ HttpCache* MockNetworkLayer::GetCache() {
|
| }
|
|
|
| HttpNetworkSession* MockNetworkLayer::GetSession() {
|
| - return NULL;
|
| + return session_;
|
| }
|
|
|
| void MockNetworkLayer::SetClock(base::Clock* clock) {
|
|
|