chromium/third_party/pdfium/constants/annotation_flags.h

// Copyright 2019 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONSTANTS_ANNOTATION_FLAGS_H_
#define CONSTANTS_ANNOTATION_FLAGS_H_

#include <stdint.h>

namespace pdfium {
namespace annotation_flags {

// PDF 1.7 spec, table 8.16.
constexpr uint32_t kInvisible =;
constexpr uint32_t kHidden =;
constexpr uint32_t kPrint =;
constexpr uint32_t kNoZoom =;
constexpr uint32_t kNoRotate =;
constexpr uint32_t kNoView =;
constexpr uint32_t kReadOnly =;
constexpr uint32_t kLocked =;
constexpr uint32_t kToggleNoView =;
constexpr uint32_t kLockedContents =;

}  // namespace annotation_flags
}  // namespace pdfium

#endif  // CONSTANTS_ANNOTATION_FLAGS_H_