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..957b08d1795059e4153b7b423b87520c97a4a2c1 |
--- /dev/null |
+++ b/components/dom_distiller/core/distilled_page_prefs.h |
@@ -0,0 +1,63 @@ |
+// 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 { |
+ LIGHT = 0, |
+ DARK, |
+ SEPIA, |
+ THEME_COUNT |
+ }; |
+ |
+ 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(); |
nyquist
2014/07/09 20:38:32
this const has no effect
smaslo
2014/07/10 17:01:06
Done.
|
+ |
+ 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_ |