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

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

Issue 341563002: Theme Preferences for Distilled Pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor changes to tests Created 6 years, 5 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
new file mode 100644
index 0000000000000000000000000000000000000000..5937e0d43f056ed19027f549ccf792ee0af522b0
--- /dev/null
+++ b/components/dom_distiller/core/distilled_page_prefs.h
@@ -0,0 +1,64 @@
+// Copyright 2014 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 COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_
+#define COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "base/observer_list.h"
+
+class PrefService;
+
+namespace user_prefs {
+class PrefRegistrySyncable;
+}
+
+namespace dom_distiller {
+
+// Interface for preferences used for distilled page.
+class DistilledPagePrefs {
+ public:
+ // Possible themes for distilled page.
+ enum Theme {
+ kLight,
nyquist 2014/07/08 22:26:48 enum values should be all capital and without the
smaslo 2014/07/09 19:42:25 Done.
+ kDark,
+ kSepia,
+ kThemeCount
+ };
+
+ class Observer {
+ public:
+ virtual void OnChangeTheme(Theme theme) = 0;
+ };
+
+ explicit DistilledPagePrefs(PrefService* pref_service);
+ ~DistilledPagePrefs();
+
+ static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+
+ // 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.
+ const Theme GetTheme();
+
+ void AddObserver(Observer* obs);
+ void RemoveObserver(Observer* obs);
+
+
+ private:
+ // Notifies all Observers of new theme.
+ void NotifyOnChangeTheme(Theme theme);
+
+ PrefService* pref_service_;
+ ObserverList<Observer> observers_;
+
+ base::WeakPtrFactory<DistilledPagePrefs> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(DistilledPagePrefs);
+};
+
+} // namespace dom_distiller
+
+#endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_

Powered by Google App Engine
This is Rietveld 408576698