2018-11-07 12:24:35 -08:00
|
|
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
2016-12-09 14:47:49 -08:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
#ifndef FLUTTER_RUNTIME_TEST_FONT_DATA_H_
|
|
|
|
|
#define FLUTTER_RUNTIME_TEST_FONT_DATA_H_
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2017-10-13 11:31:35 -07:00
|
|
|
#include <string>
|
2019-11-05 12:27:34 -08:00
|
|
|
#include <vector>
|
2017-10-13 11:31:35 -07:00
|
|
|
|
2016-12-09 14:47:49 -08:00
|
|
|
#include "third_party/skia/include/core/SkStream.h"
|
|
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
namespace flutter {
|
2016-12-09 14:47:49 -08:00
|
|
|
|
2019-11-05 12:27:34 -08:00
|
|
|
std::vector<std::unique_ptr<SkStreamAsset>> GetTestFontData();
|
2017-10-13 11:31:35 -07:00
|
|
|
std::string GetTestFontFamilyName();
|
2019-11-05 12:27:34 -08:00
|
|
|
std::vector<std::string> GetTestFontFamilyNames();
|
2016-12-09 14:47:49 -08:00
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
} // namespace flutter
|
2016-12-09 14:47:49 -08:00
|
|
|
|
|
|
|
|
#endif // FLUTTER_RUNTIME_TEST_FONT_DATA_H_
|