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 68ea2cccc91edad817c1773f4aa8420174b9dfaf..71d6a16d52f3f75aaca0a586fc3a8d0d76352995 100644 |
--- a/net/http/http_network_transaction_unittest.cc |
+++ b/net/http/http_network_transaction_unittest.cc |
@@ -133,7 +133,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(); |
} |
} |
@@ -160,7 +160,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); |
} |
@@ -174,7 +178,7 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager { |
EXPECT_TRUE(throttled_); |
throttled_ = false; |
- delegate_->OnThrottleStateChanged(); |
+ delegate_->OnThrottleStateChanged(this); |
} |
bool throttled_; |