OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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 CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_PREFS_H_ |
| 6 #define CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_PREFS_H_ |
| 7 |
| 8 #include "base/callback.h" |
| 9 #include "base/files/file_path.h" |
| 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/observer_list.h" |
| 13 #include "base/prefs/json_pref_store.h" |
| 14 #include "base/prefs/pref_change_registrar.h" |
| 15 #include "base/prefs/pref_service.h" |
| 16 #include "base/prefs/pref_store.h" |
| 17 #include "content/public/browser/host_zoom_map.h" |
| 18 |
| 19 namespace chrome { |
| 20 |
| 21 // A class to implement the interface between the zoom levels (default and |
| 22 // per-host) and Chrome's preference persistence system. |
| 23 // Finally, the prefs are also updated in response to zoom events |
| 24 // from HostZoomMap. |
| 25 class ChromeZoomLevelPrefs { |
| 26 public: |
| 27 typedef base::CallbackList<void(void)>::Subscription |
| 28 DefaultZoomLevelSubscription; |
| 29 |
| 30 // Initialize the pref_service and the profile_path via the constructor, |
| 31 // as these concepts won't be available in the content base class |
| 32 // (to be added later) which will define the InitPrefsAndCopyToHostZoomMap |
| 33 // interface. |
| 34 ChromeZoomLevelPrefs(PrefService* pref_service, |
| 35 const base::FilePath& profile_path); |
| 36 virtual ~ChromeZoomLevelPrefs(); |
| 37 |
| 38 virtual void InitPrefsAndCopyToHostZoomMap( |
| 39 const base::FilePath& partition_path, |
| 40 content::HostZoomMap* host_zoom_map); |
| 41 |
| 42 void SetDefaultZoomLevelPref(double level); |
| 43 double GetDefaultZoomLevelPref(); |
| 44 scoped_ptr<DefaultZoomLevelSubscription> RegisterDefaultZoomLevelCallback( |
| 45 const base::Closure& callback); |
| 46 |
| 47 private: |
| 48 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); |
| 49 |
| 50 PrefService* pref_service_; |
| 51 base::FilePath profile_path_; |
| 52 content::HostZoomMap* host_zoom_map_; |
| 53 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
| 54 std::string partition_key_; |
| 55 base::CallbackList<void(void)> default_zoom_changed_callbacks_; |
| 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(ChromeZoomLevelPrefs); |
| 58 }; |
| 59 |
| 60 } // namespace chrome |
| 61 |
| 62 #endif // CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_PREFS_H_ |
OLD | NEW |