| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ | 7 #ifndef CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ |
| 8 #define CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ | 8 #define CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 uint8_t m_GammaValue[256]; | 42 uint8_t m_GammaValue[256]; |
| 43 CFX_FontCache* m_pFontCache; | 43 CFX_FontCache* m_pFontCache; |
| 44 std::unique_ptr<CFX_FontMgr> m_pFontMgr; | 44 std::unique_ptr<CFX_FontMgr> m_pFontMgr; |
| 45 CCodec_ModuleMgr* m_pCodecModule; | 45 CCodec_ModuleMgr* m_pCodecModule; |
| 46 void* m_pPlatformData; | 46 void* m_pPlatformData; |
| 47 const char** m_pUserFontPaths; | 47 const char** m_pUserFontPaths; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 #endif // CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ | 50 #endif // CORE_FXGE_INCLUDE_CFX_GEMODULE_H_ |
| OLD | NEW |