blob: 1824e63aa3c157dbc5a555a14e97683cac170eed [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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_CORE_DISPLAY_LOCK_STRICT_YIELDING_DISPLAY_LOCK_BUDGET_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_STRICT_YIELDING_DISPLAY_LOCK_BUDGET_H_
#include "base/optional.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/display_lock/display_lock_budget.h"
namespace blink {
// This budget yields between lifecycle phases even if that phase is quick. In
// other words, it will only do one new lifecycle phase at a time, and block the
// future ones. Any lifecycle phases that have already been allowed by this
// budget in the past are not blocked.
class CORE_EXPORT StrictYieldingDisplayLockBudget final
: public DisplayLockBudget {
public:
StrictYieldingDisplayLockBudget(DisplayLockContext*);
~StrictYieldingDisplayLockBudget() override = default;
bool ShouldPerformPhase(Phase) const override;
void DidPerformPhase(Phase) override;
void WillStartLifecycleUpdate() override;
bool DidFinishLifecycleUpdate() override;
protected:
base::Optional<Phase> last_completed_phase_;
bool completed_new_phase_this_cycle_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_STRICT_YIELDING_DISPLAY_LOCK_BUDGET_H_