blob: 5d294c436fe606abd5eca4f19b97624b7ba1b1b9 [file] [log] [blame]
kumarashishg826308d2023-06-23 13:21:22 +00001// 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
7namespace pdfium {
8namespace 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".
15const char kLength[] = "Length";
16const char kFilter[] = "Filter";
17const char kDecodeParms[] = "DecodeParms";
18const char kF[] = "F";
19const char kDL[] = "DL";
20
21} // namespace stream
22} // namespace pdfium