#ifndef CHROME_BROWSER_UI_VIEWS_CHROME_TYPOGRAPHY_H_
#define CHROME_BROWSER_UI_VIEWS_CHROME_TYPOGRAPHY_H_
#include "build/chromeos_buildflags.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/font.h"
#include "ui/views/style/typography.h"
#include "ui/views/style/typography_provider.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/public/cpp/ash_typography.h"
#endif
enum ChromeTextContext { … };
enum ChromeTextStyle { … };
int GetFontSizeDeltaBoundedByAvailableHeight(int available_height,
int desired_font_size);
void ApplyCommonFontStyles(int context,
int style,
ui::ResourceBundle::FontDetails& details);
#endif