Home | History | Annotate | Download | only in core

Lines Matching refs:Theme

16 // Path to the integer corresponding to user's preference theme.
19 const char kThemePref[] = "dom_distiller.theme";
65 void DistilledPagePrefs::SetTheme(DistilledPagePrefs::Theme new_theme) {
74 DistilledPagePrefs::Theme DistilledPagePrefs::GetTheme() {
75 int theme = pref_service_->GetInteger(kThemePref);
76 if (theme < 0 || theme >= DistilledPagePrefs::THEME_COUNT) {
82 return static_cast<Theme>(theme);
99 DistilledPagePrefs::Theme new_theme) {