// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_COMMON_THROTTLING_WAKE_UP_BUDGET_POOL_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_COMMON_THROTTLING_WAKE_UP_BUDGET_POOL_H_ #include <optional> #include "base/time/time.h" #include "third_party/blink/renderer/platform/scheduler/common/throttling/budget_pool.h" namespace blink { namespace scheduler { // WakeUpBudgetPool represents a collection of task queues which run for a // limited time at regular intervals. class PLATFORM_EXPORT WakeUpBudgetPool : public BudgetPool { … }; } // namespace scheduler } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_COMMON_THROTTLING_WAKE_UP_BUDGET_POOL_H_