1/*
2 * Copyright 2008 The Android Open Source Project
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "include/core/SkFontMgr.h"
9
10sk_sp<SkFontMgr> SkFontMgr::Factory() {
11 // Always return nullptr, an empty SkFontMgr will be used.
12 return nullptr;
13}
14