// Copyright 2023 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_CONTAINMENT_SCOPE_TREE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_STYLE_CONTAINMENT_SCOPE_TREE_H_ #include "third_party/blink/renderer/core/css/style_containment_scope.h" #include "third_party/blink/renderer/core/layout/layout_quote.h" namespace blink { // Manages the contain style scopes and quotes of the document. // Maps as 1:1 to the StyleEngine. class CORE_EXPORT StyleContainmentScopeTree final : public GarbageCollected<StyleContainmentScopeTree> { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_STYLE_CONTAINMENT_SCOPE_TREE_H_