blob: fc12622b61fb58b74dcfd372ea1069d08809e645 [file] [log] [blame]
Lei Zhang26170562018-04-17 17:01:52 +00001// Copyright 2018 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONSTANTS_STREAM_DICT_COMMON_H_
6#define CONSTANTS_STREAM_DICT_COMMON_H_
7
8namespace pdfium {
9namespace stream {
10
11// PDF 1.7 spec, table 3.4.
12// Entries common to all stream dictionaries.
13
14// TODO(https://crbug.com/pdfium/1049): Examine all usages of "Length",
15// "Filter", and "F".
16constexpr char kLength[] = "Length";
17constexpr char kFilter[] = "Filter";
18constexpr char kDecodeParms[] = "DecodeParms";
19constexpr char kF[] = "F";
20// constexpr char kFFilter[] = "FFilter";
21// constexpr char kFDecodeParms[] = "FDecodeParms";
22constexpr char kDL[] = "DL";
23
24} // namespace stream
25} // namespace pdfium
26
27#endif // CONSTANTS_STREAM_DICT_COMMON_H_