#ifndef UI_GFX_FONT_FALLBACK_LINUX_H_
#define UI_GFX_FONT_FALLBACK_LINUX_H_
#include <string>
#include "base/files/file_path.h"
#include "third_party/icu/source/common/unicode/uchar.h"
#include "ui/gfx/gfx_export.h"
namespace gfx {
GFX_EXPORT size_t GetFallbackFontEntriesCacheSizeForTesting();
GFX_EXPORT size_t GetFallbackFontListCacheSizeForTesting();
GFX_EXPORT void ClearAllFontFallbackCachesForTesting();
struct GFX_EXPORT FallbackFontData { … };
GFX_EXPORT bool GetFallbackFontForChar(UChar32 c,
const std::string& preferred_locale,
FallbackFontData* fallback_font);
}
#endif