Avi Drissman | 3e1a26c | 2022-09-15 20:26:03 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors |
Etienne Bergeron | 0acd0fcc | 2019-09-25 22:45:26 | [diff] [blame] | 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 UI_GFX_FONT_UTIL_H_ |
| 6 | #define UI_GFX_FONT_UTIL_H_ |
| 7 | |
Kalvin Lee | 7d17d557 | 2024-11-10 13:52:45 | [diff] [blame] | 8 | #include "base/component_export.h" |
Etienne Bergeron | 0acd0fcc | 2019-09-25 22:45:26 | [diff] [blame] | 9 | |
| 10 | namespace gfx { |
| 11 | |
| 12 | // Initialize the library fonts. |
Kalvin Lee | 7d17d557 | 2024-11-10 13:52:45 | [diff] [blame] | 13 | COMPONENT_EXPORT(GFX) void InitializeFonts(); |
Etienne Bergeron | 0acd0fcc | 2019-09-25 22:45:26 | [diff] [blame] | 14 | |
| 15 | } // namespace gfx |
| 16 | |
| 17 | #endif // UI_GFX_FONT_UTIL_H_ |