// Copyright 2019 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_PROPERTIES_CSS_EXPOSURE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_PROPERTIES_CSS_EXPOSURE_H_ namespace blink { // Describes whether a property is exposed to author/user style sheets, // UA style sheets, or not at all. enum class CSSExposure { … }; inline bool IsUAExposed(CSSExposure exposure) { … } inline bool IsWebExposed(CSSExposure exposure) { … } } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_PROPERTIES_CSS_EXPOSURE_H_