1 // Copyright 2013 The Flutter 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 #ifndef FLUTTER_RUNTIME_TEST_FONT_DATA_H_ 6 #define FLUTTER_RUNTIME_TEST_FONT_DATA_H_ 7 8 #include <memory> 9 #include <string> 10 11 #include "third_party/skia/include/core/SkStream.h" 12 13 namespace flutter { 14 15 std::unique_ptr<SkStreamAsset> GetTestFontData(); 16 std::string GetTestFontFamilyName(); 17 18 } // namespace flutter 19 20 #endif // FLUTTER_RUNTIME_TEST_FONT_DATA_H_ 21