OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ | 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ |
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ | 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ |
7 | 7 |
8 #include <unordered_set> | 8 #include <unordered_set> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/optional.h" | 12 #include "base/optional.h" |
13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
14 #include "platform/scheduler/base/lazy_now.h" | 14 #include "platform/scheduler/base/lazy_now.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 namespace trace_event { | 17 namespace trace_event { |
18 class TracedValue; | 18 class TracedValue; |
19 } | 19 } |
20 } | 20 } // namespace base |
21 | 21 |
22 namespace blink { | 22 namespace blink { |
23 namespace scheduler { | 23 namespace scheduler { |
24 | 24 |
25 class TaskQueue; | 25 class TaskQueue; |
26 class BudgetPoolController; | 26 class BudgetPoolController; |
27 enum class QueueBlockType; | 27 enum class QueueBlockType; |
28 | 28 |
29 // BudgetPool represents a group of task queues which share a limit | 29 // BudgetPool represents a group of task queues which share a limit |
30 // on a resource. This limit applies when task queues are already throttled | 30 // on a resource. This limit applies when task queues are already throttled |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 bool is_enabled_; | 104 bool is_enabled_; |
105 | 105 |
106 private: | 106 private: |
107 void DissociateQueue(TaskQueue* queue); | 107 void DissociateQueue(TaskQueue* queue); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace scheduler | 110 } // namespace scheduler |
111 } // namespace blink | 111 } // namespace blink |
112 | 112 |
113 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ | 113 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_RENDERER_BUDGET_POOL_H_ |
OLD | NEW |