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 #include <memory>
8 
9 #include "build/build_config.h"
10 #include "core/fxge/systemfontinfo_iface.h"
11 
GetFaceIndex(void * hFont)12 int SystemFontInfoIface::GetFaceIndex(void* hFont) {
13   return 0;
14 }
15 
16 #if defined(OS_ANDROID)
CreateDefault(const char ** pUnused)17 std::unique_ptr<SystemFontInfoIface> SystemFontInfoIface::CreateDefault(
18     const char** pUnused) {
19   return nullptr;
20 }
21 #endif
22