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

Side by Side Diff: chrome/browser/ui/zoom/chrome_zoom_level_otr_delegate.h

Issue 2630583002: Add setting to isolate zoom changes by default. (Closed)
Patch Set: Add more tests. Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_
6 #define CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "content/public/browser/host_zoom_map.h" 11 #include "content/public/browser/host_zoom_map.h"
12 #include "content/public/browser/zoom_level_delegate.h" 12 #include "content/public/browser/zoom_level_delegate.h"
13 13
14 class ChromeZoomLevelPrefs;
15
14 namespace zoom { 16 namespace zoom {
15 class ZoomEventManager; 17 class ZoomEventManager;
16 } 18 }
17 19
18 // This class is a light-weight version of ChromeZoomLevelPrefs and is used 20 // This class is a light-weight version of ChromeZoomLevelPrefs and is used
19 // to connect an OTR StoragePartition's HostZoomMap to the OTR profile's 21 // to connect an OTR StoragePartition's HostZoomMap to the OTR profile's
20 // ZoomEventManager. 22 // ZoomEventManager and to provide the parent profile's default zoom scope.
21 class ChromeZoomLevelOTRDelegate : public content::ZoomLevelDelegate { 23 class ChromeZoomLevelOTRDelegate : public content::ZoomLevelDelegate {
22 public: 24 public:
23 ChromeZoomLevelOTRDelegate( 25 ChromeZoomLevelOTRDelegate(
24 base::WeakPtr<zoom::ZoomEventManager> zoom_event_manager); 26 base::WeakPtr<zoom::ZoomEventManager> zoom_event_manager,
27 ChromeZoomLevelPrefs* parent_zoom_level_prefs);
25 ~ChromeZoomLevelOTRDelegate() override; 28 ~ChromeZoomLevelOTRDelegate() override;
26 29
27 // content::ZoomLevelDelegate 30 // content::ZoomLevelDelegate
28 void InitHostZoomMap(content::HostZoomMap* host_zoom_map) override; 31 void InitHostZoomMap(content::HostZoomMap* host_zoom_map) override;
29 32
33 bool GetIsOriginScopePref() const override;
34 std::unique_ptr<DefaultZoomScopeSubscription>
35 RegisterDefaultZoomScopeCallback(const base::Closure& callback) override;
36
30 private: 37 private:
31 // This is a callback function that receives notifications from HostZoomMap 38 // This is a callback function that receives notifications from HostZoomMap
32 // when per-host zoom levels change. It is used to update the per-host 39 // when per-host zoom levels change. It is used to update the per-host
33 // zoom levels (if any) managed by this class (for its associated partition). 40 // zoom levels (if any) managed by this class (for its associated partition).
34 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); 41 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change);
35 42
36 base::WeakPtr<zoom::ZoomEventManager> zoom_event_manager_; 43 base::WeakPtr<zoom::ZoomEventManager> zoom_event_manager_;
37 content::HostZoomMap* host_zoom_map_; 44 content::HostZoomMap* host_zoom_map_;
38 std::unique_ptr<content::HostZoomMap::Subscription> zoom_subscription_; 45 std::unique_ptr<content::HostZoomMap::Subscription> zoom_subscription_;
46 ChromeZoomLevelPrefs* parent_zoom_level_prefs_;
39 47
40 DISALLOW_COPY_AND_ASSIGN(ChromeZoomLevelOTRDelegate); 48 DISALLOW_COPY_AND_ASSIGN(ChromeZoomLevelOTRDelegate);
41 }; 49 };
42 50
43 #endif // CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_ 51 #endif // CHROME_BROWSER_UI_ZOOM_CHROME_ZOOM_LEVEL_OTR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698