blob: 9c606021e43862ff76b21b8751a32590b10789bd [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_UNYIELDING_DISPLAY_LOCK_BUDGET_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_UNYIELDING_DISPLAY_LOCK_BUDGET_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 never yields. That is, this is essentially infinite budget that
// will finish all of the lifecycle phases for the locked subtree if given the
// chance.
class CORE_EXPORT UnyieldingDisplayLockBudget final : public DisplayLockBudget {
public:
UnyieldingDisplayLockBudget(DisplayLockContext*);
~UnyieldingDisplayLockBudget() override = default;
bool ShouldPerformPhase(Phase) const override;
void DidPerformPhase(Phase) override;
void WillStartLifecycleUpdate() override;
bool DidFinishLifecycleUpdate() override;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_UNYIELDING_DISPLAY_LOCK_BUDGET_H_