Chromium Code Reviews| 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 manage per-partition default and per-host zoom levels in Chrome's | |
| 22 // preference system. It implements an interface between the content/ zoom | |
| 23 // levels in HostZoomMap and Chrome's preference persistence system. All changes | |
| 24 // to the per-partition default zoom levels from chrome/ flow through this | |
| 25 // class. Any changes to per-host levels are updated when HostZoomMap calls | |
| 26 // OnZoomLevelChanged. | |
| 27 class ChromeZoomLevelPrefs { | |
| 28 public: | |
| 29 typedef base::CallbackList<void(void)>::Subscription | |
| 30 DefaultZoomLevelSubscription; | |
| 31 | |
| 32 // Exposed as static function for testing. | |
| 33 static std::string GetHash(const base::FilePath& relative_path); | |
| 34 | |
| 35 // Initialize the pref_service and the profile_path via the constructor, | |
| 36 // as these concepts won't be available in the content base class | |
| 37 // (to be added later) which will define the InitPrefsAndCopyToHostZoomMap | |
| 38 // interface. |pref_service_| must outlive this class. | |
| 39 ChromeZoomLevelPrefs(PrefService* pref_service, | |
| 40 const base::FilePath& profile_path); | |
| 41 virtual ~ChromeZoomLevelPrefs(); | |
| 42 | |
| 43 virtual void InitPrefsAndCopyToHostZoomMap( | |
| 44 const base::FilePath& partition_path, | |
| 45 content::HostZoomMap* host_zoom_map); | |
| 46 | |
| 47 void SetDefaultZoomLevelPref(double level); | |
| 48 double GetDefaultZoomLevelPref() const; | |
| 49 scoped_ptr<DefaultZoomLevelSubscription> RegisterDefaultZoomLevelCallback( | |
| 50 const base::Closure& callback); | |
| 51 | |
| 52 private: | |
| 53 // This is a callback function that receives notifications from HostZoomMap | |
| 54 // when per-host zoom levels change. It is used to update the per-host | |
| 55 // zoom levels (if any) managed by this class (for its associated partition). | |
|
battre
2014/10/08 11:27:10
nit: 2 spaces
wjmaclean
2014/10/10 14:40:29
Done.
| |
| 56 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); | |
| 57 | |
| 58 PrefService* pref_service_; | |
| 59 base::FilePath profile_path_; | |
| 60 content::HostZoomMap* host_zoom_map_; | |
| 61 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | |
| 62 std::string partition_key_; | |
| 63 base::CallbackList<void(void)> default_zoom_changed_callbacks_; | |
| 64 | |
| 65 DISALLOW_COPY_AND_ASSIGN(ChromeZoomLevelPrefs); | |
| 66 }; | |
| 67 | |
| 68 } // namespace chrome | |
| 69 | |
| 70 #endif // CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_PREFS_H_ | |
| OLD | NEW |