blob: bba3489f5fbb99c3ed3cfbc1b12d72d7bafdb81a [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_CSS_PAGE_ORIENTATION_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_CSS_PAGE_ORIENTATION_H_
namespace blink {
// CSS @page page-orientation descriptor values - to be used both in Blink and
// the printing implementation.
enum class PageOrientation { kUpright, kRotateLeft, kRotateRight };
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_CSS_PAGE_ORIENTATION_H_