blob: eb32b7e7d52c92820cd51a359f943e461d5aaae8 [file]
// Copyright 2014 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include <memory>
#include <utility>
#include "core/fxcrt/check.h"
#include "core/fxge/android/cfpf_skiafontmgr.h"
#include "core/fxge/android/cfx_androidfontinfo.h"
#include "core/fxge/cfx_fontmgr.h"
#include "core/fxge/cfx_gemodule.h"
class CAndroidPlatform : public CFX_GEModule::PlatformIface {
public:
CAndroidPlatform() = default;
~CAndroidPlatform() override = default;
void Init() override {
CHECK(!font_mgr_);
font_mgr_ = std::make_unique<CFPF_SkiaFontMgr>();
}
void Terminate() override {
CHECK(font_mgr_);
font_mgr_.reset();
}
std::unique_ptr<SystemFontInfoIface> CreateDefaultSystemFontInfo() override {
if (!font_mgr_) {
return nullptr;
}
auto font_info = std::make_unique<CFX_AndroidFontInfo>();
font_info->Init(font_mgr_.get(), CFX_GEModule::Get()->GetUserFontPaths());
return font_info;
}
private:
std::unique_ptr<CFPF_SkiaFontMgr> font_mgr_;
};
// static
std::unique_ptr<CFX_GEModule::PlatformIface>
CFX_GEModule::PlatformIface::Create() {
return std::make_unique<CAndroidPlatform>();
}