blob: 385288105655c636d49da46181a4aeff1ba5f8cd [file] [log] [blame]
// Copyright 2018 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_STREAM_DICT_COMMON_H_
#define CONSTANTS_STREAM_DICT_COMMON_H_
namespace pdfium {
namespace stream {
// PDF 1.7 spec, table 3.4.
// Entries common to all stream dictionaries.
//
// TODO(https://crbug.com/42270045): Examine all usages of "Length",
// "Filter", and "F".
inline constexpr char kLength[] = "Length";
inline constexpr char kFilter[] = "Filter";
inline constexpr char kDecodeParms[] = "DecodeParms";
inline constexpr char kF[] = "F";
inline constexpr char kDL[] = "DL";
} // namespace stream
} // namespace pdfium
#endif // CONSTANTS_STREAM_DICT_COMMON_H_