1 // Copyright 2022 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/font_encodings.h" 6 7 namespace pdfium { 8 namespace font_encodings { 9 10 // ISO 32000-1:2008 spec, table D1. 11 const char kMacRomanEncoding[] = "MacRomanEncoding"; 12 const char kWinAnsiEncoding[] = "WinAnsiEncoding"; 13 const char kPDFDocEncoding[] = "PDFDocEncoding"; 14 const char kMacExpertEncoding[] = "MacExpertEncoding"; 15 16 } // namespace font_encodings 17 } // namespace pdfium 18