1 // 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 
8 namespace pdfium {
9 namespace 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".
16 constexpr char kLength[] = "Length";
17 constexpr char kFilter[] = "Filter";
18 constexpr char kDecodeParms[] = "DecodeParms";
19 constexpr char kF[] = "F";
20 // constexpr char kFFilter[] = "FFilter";
21 // constexpr char kFDecodeParms[] = "FDecodeParms";
22 constexpr char kDL[] = "DL";
23 
24 }  // namespace stream
25 }  // namespace pdfium
26 
27 #endif  // CONSTANTS_STREAM_DICT_COMMON_H_
28