Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Unified Diff: net/http/http_network_transaction_unittest.cc

Issue 2130493002: Implement THROTTLED priority semantics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@NetworkStreamThrottler
Patch Set: Incorporated comments, simplified timing code. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 89b1b78514163c838fc03af7d566986163f48af7..4222faed05290752aebd35b9242c7d2c517605ed 100644
--- a/net/http/http_network_transaction_unittest.cc
+++ b/net/http/http_network_transaction_unittest.cc
@@ -134,7 +134,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();
}
}
@@ -161,7 +161,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);
}
@@ -175,7 +179,7 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager {
EXPECT_TRUE(throttled_);
throttled_ = false;
- delegate_->OnThrottleStateChanged();
+ delegate_->OnThrottleUnblocked(this);
}
bool throttled_;

Powered by Google App Engine
This is Rietveld 408576698