// 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_CSS_ANCHOR_QUERY_ENUMS_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_ANCHOR_QUERY_ENUMS_H_ #include <cstdint> namespace blink { enum class CSSAnchorQueryType : uint8_t { … }; CSSAnchorQueryTypes; constexpr CSSAnchorQueryTypes kCSSAnchorQueryTypesNone = …; constexpr CSSAnchorQueryTypes kCSSAnchorQueryTypesAll = …; enum class CSSAnchorValue { … }; enum class CSSAnchorSizeValue { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_ANCHOR_QUERY_ENUMS_H_