blob: cffe9280ea5c92a585f993745ae085349499913c [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TXT_PLATFORM_H_
#define TXT_PLATFORM_H_
#include <string>
#include <vector>
#include "flutter/fml/macros.h"
#include "third_party/skia/include/core/SkFontMgr.h"
namespace txt {
std::vector<std::string> GetDefaultFontFamilies();
sk_sp<SkFontMgr> GetDefaultFontManager();
} // namespace txt
#endif // TXT_PLATFORM_H_