OLD | NEW |
---|---|
(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 #include "components/dom_distiller/core/distilled_page_prefs.h" | |
6 | |
7 #include "base/bind.h" | |
8 #include "base/memory/weak_ptr.h" | |
9 #include "base/message_loop/message_loop.h" | |
10 #include "base/observer_list.h" | |
11 #include "base/prefs/pref_service.h" | |
12 #include "components/pref_registry/pref_registry_syncable.h" | |
13 | |
14 namespace { | |
15 | |
16 // Path to the integer corresponding to user's preference theme. | |
17 const char kThemePref[] = "dom_distiller.theme"; | |
18 } | |
19 | |
20 namespace dom_distiller { | |
21 | |
22 DistilledPagePrefs::DistilledPagePrefs(PrefService* pref_service) | |
23 : pref_service_(pref_service), weak_ptr_factory_(this) { | |
24 } | |
25 | |
26 DistilledPagePrefs::~DistilledPagePrefs() { | |
27 } | |
28 | |
29 // static | |
30 void DistilledPagePrefs::RegisterProfilePrefs( | |
31 user_prefs::PrefRegistrySyncable* registry) { | |
32 registry->RegisterIntegerPref( | |
33 kThemePref, | |
34 Theme::LIGHT, | |
35 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); | |
36 } | |
37 | |
38 void DistilledPagePrefs::SetTheme(Theme new_theme) { | |
39 pref_service_->SetInteger(kThemePref, new_theme); | |
40 base::MessageLoop::current()->PostTask( | |
41 FROM_HERE, | |
42 base::Bind(&DistilledPagePrefs::NotifyOnChangeTheme, | |
43 weak_ptr_factory_.GetWeakPtr(), | |
44 new_theme)); | |
45 } | |
46 | |
47 const DistilledPagePrefs::Theme DistilledPagePrefs::GetTheme() { | |
48 int theme = pref_service_->GetInteger(kThemePref); | |
49 if (theme < 0 || theme >= Theme::THEME_COUNT) { | |
50 SetTheme(Theme::LIGHT); | |
nyquist
2014/07/09 20:38:32
Nit: Add a comment saying something like "persiste
smaslo
2014/07/10 17:01:06
Done.
| |
51 return Theme::LIGHT; | |
52 } | |
53 return (Theme) theme; | |
54 } | |
55 | |
56 void DistilledPagePrefs::AddObserver(Observer* obs) { | |
57 observers_.AddObserver(obs); | |
58 } | |
59 | |
60 void DistilledPagePrefs::RemoveObserver(Observer* obs) { | |
61 observers_.RemoveObserver(obs); | |
62 } | |
63 | |
64 void DistilledPagePrefs::NotifyOnChangeTheme(Theme new_theme) { | |
65 FOR_EACH_OBSERVER(Observer, observers_, OnChangeTheme(new_theme)); | |
66 } | |
67 | |
68 } // namespace dom_distiller | |
OLD | NEW |