chromium/third_party/blink/renderer/core/css/resolver/cascade_origin.h

// Copyright 2020 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_RESOLVER_CASCADE_ORIGIN_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_RESOLVER_CASCADE_ORIGIN_H_

#include <cstdint>

namespace blink {

// Represents the origin criteria described by css-cascade [1].
//
// [1] https://www.w3.org/TR/css-cascade-3/#cascade-origin
enum class CascadeOrigin : uint8_t {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_RESOLVER_CASCADE_ORIGIN_H_