summaryrefslogtreecommitdiffstats
path: root/ui/gfx/hud_font.h
blob: f72a050d6e19578c50b8001ed83ce369c84bf001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_GFX_HUD_FONT_H_
#define UI_GFX_HUD_FONT_H_

#include "skia/ext/refptr.h"
#include "ui/gfx/gfx_export.h"

class SkTypeface;

namespace gfx {

GFX_EXPORT void SetHudTypeface(skia::RefPtr<SkTypeface> typeface);
GFX_EXPORT skia::RefPtr<SkTypeface> GetHudTypeface();

}  // namespace gfx

#endif  // UI_GFX_HUD_FONT_H_