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

Unified Diff: chrome/browser/ui/zoom/zoom_level_prefs_store_impl.h

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 6 years, 4 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: chrome/browser/ui/zoom/zoom_level_prefs_store_impl.h
diff --git a/chrome/browser/ui/zoom/zoom_level_prefs_store_impl.h b/chrome/browser/ui/zoom/zoom_level_prefs_store_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..06718e637ac7f8561857ad00d56decea90977223
--- /dev/null
+++ b/chrome/browser/ui/zoom/zoom_level_prefs_store_impl.h
@@ -0,0 +1,47 @@
+// Copyright (c) 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 CHROME_BROWSER_UI_ZOOM_ZOOM_LEVEL_PREFS_STORE_IMPL_H_
+#define CHROME_BROWSER_UI_ZOOM_ZOOM_LEVEL_PREFS_STORE_IMPL_H_
+
+#include "content/public/browser/zoom_level_prefs_store.h"
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/prefs/json_pref_store.h"
+#include "base/prefs/pref_store.h"
+#include "chrome/browser/prefs/pref_service_syncable.h"
+#include "content/public/browser/host_zoom_map.h"
+
+namespace browser {
Fady Samuel 2014/08/14 18:56:26 namespace chrome
wjmaclean 2014/08/14 19:12:20 Done.
+
+class ZoomLevelPrefsStoreImpl : public PrefStore::Observer,
+ public content::ZoomLevelPrefsStore {
Fady Samuel 2014/08/14 18:56:26 Alignment.
wjmaclean 2014/08/14 19:12:20 Done.
+ public:
+ ZoomLevelPrefsStoreImpl();
+ virtual ~ZoomLevelPrefsStoreImpl();
+ void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change);
+
+ // Implement ZoomLevelPrefsStore.
+ virtual void InitHostZoomMap(const base::FilePath& file_path,
+ content::HostZoomMap* host_zoom_map) OVERRIDE;
+ virtual PrefService* GetPrefs() OVERRIDE;
+
+ // Implement PrefObserver.
+ virtual void OnPrefValueChanged(const std::string& key) OVERRIDE;
+ virtual void OnInitializationCompleted(bool succeeded) OVERRIDE;
+
+ private:
+
+ scoped_refptr<JsonPrefStore> zoom_level_prefs_;
+ scoped_ptr<PrefServiceSyncable> pref_service_;
+ scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_;
+ content::HostZoomMap* host_zoom_map_;
+
+ DISALLOW_COPY_AND_ASSIGN(ZoomLevelPrefsStoreImpl);
+};
+
+} // namespace browser
+
+#endif // CHROME_BROWSER_UI_ZOOM_ZOOM_LEVEL_PREFS_STORE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698