blob: 1e42a7c770b7c740cadc66f318b6dcfb35fbb4af [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.
#include "txt/platform.h"
namespace txt {
std::vector<std::string> GetDefaultFontFamilies() {
return {"sans-serif"};
}
sk_sp<SkFontMgr> GetDefaultFontManager() {
return SkFontMgr::RefDefault();
}
} // namespace txt