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

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

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove ref counts, improve 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_delegate_impl.h
diff --git a/chrome/browser/ui/zoom/zoom_level_prefs_delegate_impl.h b/chrome/browser/ui/zoom/zoom_level_prefs_delegate_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..7144873537c23b7026950d906e26de8e2b4bb574
--- /dev/null
+++ b/chrome/browser/ui/zoom/zoom_level_prefs_delegate_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_DELEGATE_IMPL_H_
+#define CHROME_BROWSER_UI_ZOOM_ZOOM_LEVEL_PREFS_DELEGATE_IMPL_H_
+
+#include "content/public/browser/zoom_level_prefs_delegate.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 {
+
+class ZoomLevelPrefsDelegateImpl : public PrefStore::Observer,
Fady Samuel 2014/08/13 19:45:42 ZoomLevelPrefsStoreImpl
wjmaclean 2014/08/14 18:18:21 Done.
+ public content::ZoomLevelPrefsDelegate {
+ public:
+ ZoomLevelPrefsDelegateImpl();
+ virtual ~ZoomLevelPrefsDelegateImpl();
+ void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change);
+
+ // Implement ZoomLevelPrefsDelegate.
+ virtual void InitZoomLevels(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(ZoomLevelPrefsDelegateImpl);
+};
+
+} // namespace browser
+
+#endif // CHROME_BROWSER_UI_ZOOM_ZOOM_LEVEL_PREFS_DELEGATE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698