| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "core/fpdfapi/fpdf_font/font_int.h" | 7 #include "core/fpdfapi/font/font_int.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/cpdf_modulemgr.h" | 9 #include "core/fpdfapi/cpdf_modulemgr.h" |
| 10 #include "core/fpdfapi/fpdf_page/cpdf_form.h" | 10 #include "core/fpdfapi/fpdf_page/cpdf_form.h" |
| 11 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" | 11 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" |
| 12 #include "core/fpdfapi/fpdf_page/pageint.h" | 12 #include "core/fpdfapi/fpdf_page/pageint.h" |
| 13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 13 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
| 14 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 14 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" |
| 15 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
| 16 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_name.h" |
| 17 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_number.h" |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 } | 298 } |
| 299 if (cid_set) { | 299 if (cid_set) { |
| 300 m_pBaseMap = CPDF_ModuleMgr::Get() | 300 m_pBaseMap = CPDF_ModuleMgr::Get() |
| 301 ->GetPageModule() | 301 ->GetPageModule() |
| 302 ->GetFontGlobals() | 302 ->GetFontGlobals() |
| 303 ->m_CMapManager.GetCID2UnicodeMap(cid_set, FALSE); | 303 ->m_CMapManager.GetCID2UnicodeMap(cid_set, FALSE); |
| 304 } else { | 304 } else { |
| 305 m_pBaseMap = nullptr; | 305 m_pBaseMap = nullptr; |
| 306 } | 306 } |
| 307 } | 307 } |
| OLD | NEW |