blob: e2dbe0d7bc83b1e8706e79c06c54bcc61cb30d8c [file]
// Copyright 2020 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_ACCESS_PERMISSIONS_H_
#define CONSTANTS_ACCESS_PERMISSIONS_H_
namespace pdfium {
namespace access_permissions {
// ISO 32000-1:2008 spec, table 22.
// User access permissions.
constexpr uint32_t kModifyContent = 1 << 3;
constexpr uint32_t kModifyAnnotation = 1 << 5;
constexpr uint32_t kFillForm = 1 << 8;
constexpr uint32_t kExtractForAccessibility = 1 << 9;
} // namespace access_permissions
} // namespace pdfium
#endif // CONSTANTS_ACCESS_PERMISSIONS_H_