chromium/third_party/blink/renderer/core/css/layout_upgrade.h

// Copyright 2022 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_CORE_CSS_LAYOUT_UPGRADE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_LAYOUT_UPGRADE_H_

#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"

namespace blink {

class Document;
class Element;
class HTMLFrameOwnerElement;

// Various APIs require that style information is updated immediately, e.g.
// getComputedStyle. This is done by calling Document::UpdateStyleAndLayoutTree-
// [ForNode]. However, because of container queries, it is no longer always
// possible to update style without also updating layout. When such a
// dependency exists, the call to update style must be *upgraded* to update
// layout as well.
//
// Whether or not an upgrade is needed depends on the element (or elements) the
// API in question needs to interact with. We typically want to avoid
// doing layout if it isn't necessary to satisfy a given API. The LayoutUpgrade
// classes can determine whether or not an upgrade is needed for a given
// situation.
class LayoutUpgrade {};

// Upgrades when *any* element in the document may depend on layout. Suitable
// when the style update isn't focused on a single element.
class DocumentLayoutUpgrade : public LayoutUpgrade {};

// Upgrades when the document depends on layout information in the parent frame.
class ParentLayoutUpgrade : public LayoutUpgrade {};

// Upgrades whenever the (inclusive) ancestor chain contains an interleaving
// root. Suitable when the style of a specific node will be accessed.
class ElementLayoutUpgrade : public LayoutUpgrade {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_LAYOUT_UPGRADE_H_