blob: b765018119aeb7f5356f1b7a1b98c03308ce3499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_FONT_UTIL_H_
#define UI_GFX_FONT_UTIL_H_
#include "ui/gfx/gfx_export.h"
namespace gfx {
// Initialize the library fonts.
GFX_EXPORT void InitializeFonts();
} // namespace gfx
#endif // UI_GFX_FONT_UTIL_H_
|