// Copyright 2021 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_STYLE_RECALC_CONTEXT_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_STYLE_RECALC_CONTEXT_H_ #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/heap/collection_support/heap_vector.h" namespace blink { class AnchorEvaluator; class ComputedStyle; class CSSPropertyValueSet; class Element; class HTMLSlotElement; class StyleScopeFrame; // StyleRecalcContext is an object that is passed on the stack during // the style recalc process. // // Its purpose is to hold context related to the style recalc process as // a whole, i.e. information not directly associated to the specific element // style is being calculated for. class CORE_EXPORT StyleRecalcContext { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_STYLE_RECALC_CONTEXT_H_