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

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

Issue 341563002: Theme Preferences for Distilled Pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed names and added 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.cc
diff --git a/components/dom_distiller/core/distilled_page_prefs.cc b/components/dom_distiller/core/distilled_page_prefs.cc
new file mode 100644
index 0000000000000000000000000000000000000000..83f85771dc644420e29c697a3c811bed34066950
--- /dev/null
+++ b/components/dom_distiller/core/distilled_page_prefs.cc
@@ -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.
+
+#include "components/dom_distiller/core/distilled_page_prefs.h"
+
+#include "base/bind.h"
+#include "base/memory/weak_ptr.h"
+#include "base/message_loop/message_loop.h"
+#include "base/observer_list.h"
+#include "base/prefs/pref_service.h"
+#include "components/pref_registry/pref_registry_syncable.h"
+
+namespace {
+
+// True if user prefers high-contrast (dark) appearance for distilled page.
nyquist 2014/07/07 19:12:48 This comment needs to be updated.
smaslo 2014/07/08 19:58:10 Done.
+const char kThemePref[] = "dom_distiller.theme";
+
+}
+
+namespace dom_distiller {
+
+DistilledPagePrefs::DistilledPagePrefs(PrefService* pref_service)
+ : pref_service_(pref_service),
+ weak_ptr_factory_(this) {
+}
+
+DistilledPagePrefs::~DistilledPagePrefs() {
+}
+
+void DistilledPagePrefs::AddObserver(Observer* obs) {
+ observers_.AddObserver(obs);
+}
+
+void DistilledPagePrefs::RemoveObserver(Observer* obs) {
+ observers_.RemoveObserver(obs);
+}
+
+// static
+void DistilledPagePrefs::RegisterProfilePrefs(
+ user_prefs::PrefRegistrySyncable* registry) {
+ registry->RegisterIntegerPref(kThemePref,
+ Theme::kLight,
+ user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
+}
+
+void DistilledPagePrefs::SetTheme(Theme new_theme) {
+ pref_service_->SetInteger(kThemePref, new_theme);
+ base::MessageLoop::current()->PostTask(FROM_HERE,
+ base::Bind(&DistilledPagePrefs::NotifyOnChangeTheme,
+ weak_ptr_factory_.GetWeakPtr(), new_theme));
+}
+
+void DistilledPagePrefs::NotifyOnChangeTheme(Theme new_theme) {
+ FOR_EACH_OBSERVER(Observer, observers_, OnChangeTheme(new_theme));
+}
+
+const DistilledPagePrefs::Theme DistilledPagePrefs::GetTheme() const {
+ return (Theme) pref_service_->GetInteger(kThemePref);
nyquist 2014/07/07 19:12:48 This is an unsafe cast, since the values on disk c
smaslo 2014/07/08 19:58:10 Done. I also added a check to SetTheme() to preve
+}
+
+} // namespace dom_distiller
+

Powered by Google App Engine
This is Rietveld 408576698