xref: /aosp_15_r20/external/pdfium/constants/stream_dict_common.cpp (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
1 // Copyright 2021 The PDFium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "constants/stream_dict_common.h"
6 
7 namespace pdfium {
8 namespace stream {
9 
10 // PDF 1.7 spec, table 3.4.
11 // Entries common to all stream dictionaries.
12 //
13 // TODO(https://crbug.com/pdfium/1049): Examine all usages of "Length",
14 // "Filter", and "F".
15 const char kLength[] = "Length";
16 const char kFilter[] = "Filter";
17 const char kDecodeParms[] = "DecodeParms";
18 const char kF[] = "F";
19 const char kDL[] = "DL";
20 
21 }  // namespace stream
22 }  // namespace pdfium
23