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

Side by Side 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: Changed how accessed enum to agree with gcc 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_
6 #define COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_
7
8 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h"
10 #include "base/observer_list.h"
11
12 class PrefService;
13
14 namespace user_prefs {
15 class PrefRegistrySyncable;
16 }
17
18 namespace dom_distiller {
19
20 // Interface for preferences used for distilled page.
21 class DistilledPagePrefs {
22 public:
23 // Possible themes for distilled page.
24 enum Theme {
25 LIGHT,
26 DARK,
27 SEPIA,
28 THEME_COUNT
29 };
30
31 class Observer {
32 public:
33 virtual void OnChangeTheme(Theme theme) = 0;
34 };
35
36 explicit DistilledPagePrefs(PrefService* pref_service);
37 ~DistilledPagePrefs();
38
39 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
40
41 // Sets the user's preference for the theme of distilled pages.
42 void SetTheme(Theme new_theme);
43 // Returns the user's preference for the theme of distilled pages.
44 Theme GetTheme();
45
46 void AddObserver(Observer* obs);
47 void RemoveObserver(Observer* obs);
48
49 private:
50 // Notifies all Observers of new theme.
51 void NotifyOnChangeTheme(Theme theme);
52
53 PrefService* pref_service_;
54 ObserverList<Observer> observers_;
55
56 base::WeakPtrFactory<DistilledPagePrefs> weak_ptr_factory_;
57
58 DISALLOW_COPY_AND_ASSIGN(DistilledPagePrefs);
59 };
60
61 } // namespace dom_distiller
62
63 #endif // COMPONENTS_DOM_DISTILLER_CORE_DISTILLED_PAGE_PREFS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698