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

Unified Diff: content/browser/loader/resource_scheduler.h

Issue 1230133005: Fix Resource Priorities and Scheduling (Chrome Side) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment Created 5 years, 4 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: content/browser/loader/resource_scheduler.h
diff --git a/content/browser/loader/resource_scheduler.h b/content/browser/loader/resource_scheduler.h
index 60cf0cd69f8c10360b3c3f43babb2a61744e7443..48d09f529ae8bc48eb28d543e90bfa18b4a24d9c 100644
--- a/content/browser/loader/resource_scheduler.h
+++ b/content/browser/loader/resource_scheduler.h
@@ -238,6 +238,11 @@ class CONTENT_EXPORT ResourceScheduler : public base::NonThreadSafe {
size_t coalesced_clients_;
bool limit_outstanding_requests_;
size_t outstanding_request_limit_;
+ net::RequestPriority layout_blocking_priority_threshold_;
+ bool enable_layout_blocking_threshold_;
+ size_t in_flight_layout_blocking_threshold_;
+ size_t max_num_delayable_while_layout_blocking_;
+ size_t max_num_delayable_requests_;
// This is a repeating timer to initiate requests on COALESCED Clients.
scoped_ptr<base::Timer> coalescing_timer_;
RequestSet unowned_requests_;

Powered by Google App Engine
This is Rietveld 408576698