blob: ee058694b1ca1fe2e3575c30f0d197f89dbc41da [file] [log] [blame]
// Copyright 2024 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_GEOMETRY_PHYSICAL_DIRECTION_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_PHYSICAL_DIRECTION_H_
#include <stdint.h>
namespace blink {
enum class PhysicalDirection : uint8_t { kUp = 0, kRight, kDown, kLeft };
} // namespace blink
//
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GEOMETRY_PHYSICAL_DIRECTION_H_