1 // Copyright 2014 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef CORE_SRC_FXGE_ANDROID_FPF_SKIAMODULE_H_ 8 #define CORE_SRC_FXGE_ANDROID_FPF_SKIAMODULE_H_ 9 10 #if _FX_OS_ == _FX_ANDROID_ 11 class CFPF_SkiaFontMgr; 12 class CFPF_SkiaDeviceModule : public IFPF_DeviceModule 13 { 14 public: CFPF_SkiaDeviceModule()15 CFPF_SkiaDeviceModule() : m_pFontMgr(NULL) {} 16 virtual ~CFPF_SkiaDeviceModule(); 17 virtual void Destroy(); 18 virtual IFPF_FontMgr* GetFontMgr(); 19 protected: 20 CFPF_SkiaFontMgr *m_pFontMgr; 21 }; 22 #endif 23 24 #endif // CORE_SRC_FXGE_ANDROID_FPF_SKIAMODULE_H_ 25