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::stream { 8 9 // PDF 1.7 spec, table 3.4. 10 // Entries common to all stream dictionaries. 11 // 12 // TODO(https://crbug.com/pdfium/1049): Examine all usages of "Length", 13 // "Filter", and "F". 14 const char kLength[] = "Length"; 15 const char kFilter[] = "Filter"; 16 const char kDecodeParms[] = "DecodeParms"; 17 const char kF[] = "F"; 18 const char kDL[] = "DL"; 19 20 } // namespace pdfium::stream 21