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 76d7804dc629bc3cee4b54c7486b5a8c6a41d97e..9860e7242b09ceee829a09424c33f0246321b6ff 100644 |
--- a/net/http/http_network_transaction_unittest.cc |
+++ b/net/http/http_network_transaction_unittest.cc |
@@ -146,7 +146,7 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager { |
void UnthrottleAllRequests() { |
std::set<TestThrottle*> outstanding_throttles_copy(outstanding_throttles_); |
for (auto& throttle : outstanding_throttles_copy) { |
- if (throttle->IsThrottled()) |
+ if (throttle->IsBlocked()) |
throttle->Unthrottle(); |
} |
} |
@@ -173,7 +173,11 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager { |
~TestThrottle() override { throttler_->OnThrottleDestroyed(this); } |
// Throttle |
- bool IsThrottled() const override { return throttled_; } |
+ bool IsBlocked() const override { return throttled_; } |
+ RequestPriority Priority() const override { |
+ NOTREACHED(); |
+ return IDLE; |
+ } |
void SetPriority(RequestPriority priority) override { |
throttler_->SetPriorityCalled(priority); |
} |
@@ -187,7 +191,7 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager { |
EXPECT_TRUE(throttled_); |
throttled_ = false; |
- delegate_->OnThrottleStateChanged(); |
+ delegate_->OnThrottleStateChanged(this); |
} |
bool throttled_; |