Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(417)

Unified Diff: components/dom_distiller/core/distilled_page_prefs.h

Issue 430473007: Font Family Preferences for Distilled Pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: synced Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/core/distilled_page_prefs.h
diff --git a/components/dom_distiller/core/distilled_page_prefs.h b/components/dom_distiller/core/distilled_page_prefs.h
index 7a40b2711c8a2ac5f43b48f59503b06667415a97..eeec8a9674ec99fe43c606d22c75c7080e8e31af 100644
--- a/components/dom_distiller/core/distilled_page_prefs.h
+++ b/components/dom_distiller/core/distilled_page_prefs.h
@@ -20,6 +20,13 @@ namespace dom_distiller {
// Interface for preferences used for distilled page.
class DistilledPagePrefs {
public:
+ // Possible font families for distilled page.
+ enum FontFamily {
+#define DEFINE_FONT_FAMILY(name, value) name = value,
+#include "components/dom_distiller/core/font_family_list.h"
+#undef DEFINE_FONT_FAMILY
+ };
+
// Possible themes for distilled page.
enum Theme {
#define DEFINE_THEME(name, value) name = value,
@@ -29,6 +36,7 @@ class DistilledPagePrefs {
class Observer {
public:
+ virtual void OnChangeFontFamily(FontFamily font) = 0;
virtual void OnChangeTheme(Theme theme) = 0;
};
@@ -37,6 +45,11 @@ class DistilledPagePrefs {
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+ // Sets the user's preference for the font family of distilled pages.
+ void SetFontFamily(FontFamily new_font);
+ // Returns the user's preference for the font family of distilled pages.
+ FontFamily GetFontFamily();
+
// Sets the user's preference for the theme of distilled pages.
void SetTheme(Theme new_theme);
// Returns the user's preference for the theme of distilled pages.
@@ -46,6 +59,8 @@ class DistilledPagePrefs {
void RemoveObserver(Observer* obs);
private:
+ // Notifies all Observers of new font family.
+ void NotifyOnChangeFontFamily(FontFamily font_family);
// Notifies all Observers of new theme.
void NotifyOnChangeTheme(Theme theme);
« no previous file with comments | « components/dom_distiller/core/css/distilledpage.css ('k') | components/dom_distiller/core/distilled_page_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698