chromium/third_party/blink/renderer/platform/text/character_property.h

// Copyright 2016 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_PLATFORM_TEXT_CHARACTER_PROPERTY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TEXT_CHARACTER_PROPERTY_H_

#include <cstdint>

namespace blink {

CharacterPropertyType;

enum class CharacterProperty : CharacterPropertyType {};
static_assert;

inline CharacterProperty operator|(CharacterProperty a, CharacterProperty b) {}

inline CharacterProperty operator&(CharacterProperty a, CharacterProperty b) {}

inline CharacterProperty operator|=(CharacterProperty& a, CharacterProperty b) {}

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_TEXT_CHARACTER_PROPERTY_H_