| 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 #ifndef CORE_FXGE_INCLUDE_FX_GE_H_ | 7 #ifndef CORE_FXGE_INCLUDE_FX_GE_H_ |
| 8 #define CORE_FXGE_INCLUDE_FX_GE_H_ | 8 #define CORE_FXGE_INCLUDE_FX_GE_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "core/fxge/include/cfx_fontmgr.h" |
| 12 #include "core/fxge/include/fx_dib.h" | 13 #include "core/fxge/include/fx_dib.h" |
| 13 #include "core/fxge/include/fx_font.h" | 14 #include "core/fxge/include/fx_font.h" |
| 14 | 15 |
| 15 class CCodec_ModuleMgr; | 16 class CCodec_ModuleMgr; |
| 16 class CFX_FaceCache; | 17 class CFX_FaceCache; |
| 17 class CFX_Font; | 18 class CFX_Font; |
| 18 class CFX_FontCache; | 19 class CFX_FontCache; |
| 19 class CFX_FontMgr; | 20 class CFX_FontMgr; |
| 20 class CPDF_ShadingPattern; | 21 class CPDF_ShadingPattern; |
| 21 class IFX_RenderDeviceDriver; | 22 class IFX_RenderDeviceDriver; |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 bool AttachRecorder(SkPictureRecorder* recorder); | 425 bool AttachRecorder(SkPictureRecorder* recorder); |
| 425 SkPictureRecorder* CreateRecorder(int size_x, int size_y); | 426 SkPictureRecorder* CreateRecorder(int size_x, int size_y); |
| 426 void DebugVerifyBitmapIsPreMultiplied() const override; | 427 void DebugVerifyBitmapIsPreMultiplied() const override; |
| 427 #endif | 428 #endif |
| 428 | 429 |
| 429 protected: | 430 protected: |
| 430 bool m_bOwnedBitmap; | 431 bool m_bOwnedBitmap; |
| 431 }; | 432 }; |
| 432 | 433 |
| 433 #endif // CORE_FXGE_INCLUDE_FX_GE_H_ | 434 #endif // CORE_FXGE_INCLUDE_FX_GE_H_ |
| OLD | NEW |