mirror of
https://pdfium.googlesource.com/pdfium
synced 2026-08-02 05:04:39 +08:00
Update comments referencing the "PDF 1.7 spec" to point to their corresponding tables and sections in the ISO 32000-1:2008 specification. Hopefully nobody will need to open pdf_reference_1-7.pdf anymore after this. TAG=agy CONV=e172d025-7526-4dbc-b51d-9fdabcf46a76 Change-Id: I80544bd4df3829cb9292199e9dac7d223b2377a1 Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/149091 Reviewed-by: Andy Phan <andyphan@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
26 lines
740 B
C++
26 lines
740 B
C++
// Copyright 2018 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef CONSTANTS_STREAM_DICT_COMMON_H_
|
|
#define CONSTANTS_STREAM_DICT_COMMON_H_
|
|
|
|
namespace pdfium {
|
|
namespace stream {
|
|
|
|
// ISO 32000-1:2008 spec, table 5.
|
|
// Entries common to all stream dictionaries.
|
|
//
|
|
// TODO(https://crbug.com/42270045): Examine all usages of "Length",
|
|
// "Filter", and "F".
|
|
inline constexpr char kLength[] = "Length";
|
|
inline constexpr char kFilter[] = "Filter";
|
|
inline constexpr char kDecodeParms[] = "DecodeParms";
|
|
inline constexpr char kF[] = "F";
|
|
inline constexpr char kDL[] = "DL";
|
|
|
|
} // namespace stream
|
|
} // namespace pdfium
|
|
|
|
#endif // CONSTANTS_STREAM_DICT_COMMON_H_
|