OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_ZOOM_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/prefs/pref_member.h" | 10 #include "base/prefs/pref_member.h" |
11 #include "content/public/browser/host_zoom_map.h" | 11 #include "content/public/browser/host_zoom_map.h" |
12 #include "content/public/browser/web_contents_observer.h" | 12 #include "content/public/browser/web_contents_observer.h" |
13 #include "content/public/browser/web_contents_user_data.h" | 13 #include "content/public/browser/web_contents_user_data.h" |
| 14 #include "extensions/common/extension.h" |
14 | 15 |
15 class ZoomObserver; | 16 class ZoomObserver; |
16 | 17 |
17 namespace content { | 18 namespace content { |
18 class WebContents; | 19 class WebContents; |
19 } | 20 } |
20 | 21 |
21 // Per-tab class to manage the Omnibox zoom icon. | 22 // Per-tab class to manage the Omnibox zoom icon. |
22 class ZoomController : public content::WebContentsObserver, | 23 class ZoomController : public content::WebContentsObserver, |
23 public content::WebContentsUserData<ZoomController> { | 24 public content::WebContentsUserData<ZoomController> { |
24 public: | 25 public: |
25 virtual ~ZoomController(); | 26 virtual ~ZoomController(); |
26 | 27 |
27 int zoom_percent() const { return zoom_percent_; } | 28 int zoom_percent() const { return zoom_percent_; } |
28 | 29 |
29 // Convenience method to quickly check if the tab's at default zoom. | 30 // Convenience method to quickly check if the tab's at default zoom. |
30 bool IsAtDefaultZoom() const; | 31 bool IsAtDefaultZoom() const; |
31 | 32 |
32 // Returns which image should be loaded for the current zoom level. | 33 // Returns which image should be loaded for the current zoom level. |
33 int GetResourceForZoomLevel() const; | 34 int GetResourceForZoomLevel() const; |
34 | 35 |
| 36 // Gets an extensoin from |zoom_extension_map_| by zoom ID. |
| 37 const extensions::Extension* GetExtensionById(int zoom_id) const; |
| 38 |
| 39 int last_zoom_id() const; |
| 40 |
35 void set_observer(ZoomObserver* observer) { observer_ = observer; } | 41 void set_observer(ZoomObserver* observer) { observer_ = observer; } |
36 | 42 |
| 43 // Sets the zoom level through WebContents::SetZoomLevel(), associates |
| 44 // |extension| with that zoom change's zoom ID, and returns the zoom ID. |
| 45 int SetZoomLevelByExtension( |
| 46 double zoom_level, |
| 47 scoped_refptr<const extensions::Extension> extension); |
| 48 |
37 // content::WebContentsObserver overrides: | 49 // content::WebContentsObserver overrides: |
38 virtual void DidNavigateMainFrame( | 50 virtual void DidNavigateMainFrame( |
39 const content::LoadCommittedDetails& details, | 51 const content::LoadCommittedDetails& details, |
40 const content::FrameNavigateParams& params) OVERRIDE; | 52 const content::FrameNavigateParams& params) OVERRIDE; |
41 | 53 |
42 private: | 54 private: |
43 explicit ZoomController(content::WebContents* web_contents); | 55 explicit ZoomController(content::WebContents* web_contents); |
44 friend class content::WebContentsUserData<ZoomController>; | 56 friend class content::WebContentsUserData<ZoomController>; |
45 friend class ZoomControllerTest; | 57 friend class ZoomControllerTest; |
46 | 58 |
47 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); | 59 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); |
48 | 60 |
49 // Updates the zoom icon and zoom percentage based on current values and | 61 // Updates the zoom icon and zoom percentage based on current values and |
50 // notifies the observer if changes have occurred. |host| may be empty, | 62 // notifies the observer if changes have occurred. |host| may be empty, |
51 // meaning the change should apply to ~all sites. If it is not empty, the | 63 // meaning the change should apply to ~all sites. If it is not empty, the |
52 // change only affects sites with the given host. | 64 // change only affects sites with the given host. |
53 void UpdateState(const std::string& host); | 65 void UpdateState(const std::string& host); |
| 66 void UpdateState(const std::string& host, int zoom_id, |
| 67 bool is_temporary_zoom); |
54 | 68 |
55 // The current zoom percentage. | 69 // The current zoom percentage. |
56 int zoom_percent_; | 70 int zoom_percent_; |
57 | 71 |
58 // Used to access the default zoom level preference. | 72 // Used to access the default zoom level preference. |
59 DoublePrefMember default_zoom_level_; | 73 DoublePrefMember default_zoom_level_; |
60 | 74 |
| 75 // Used to keep track of which extensions initiated which zoom changes. |
| 76 typedef std::map<int, scoped_refptr< |
| 77 const extensions::Extension> > ZoomExtensionMap; |
| 78 ZoomExtensionMap zoom_extension_map_; |
| 79 |
| 80 // Keeps track of the zoom_id of the last zoom change that took effect. |
| 81 int last_zoom_id_; |
| 82 |
61 // Observer receiving notifications on state changes. | 83 // Observer receiving notifications on state changes. |
62 ZoomObserver* observer_; | 84 ZoomObserver* observer_; |
63 | 85 |
64 content::BrowserContext* browser_context_; | 86 content::BrowserContext* browser_context_; |
65 | 87 |
66 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 88 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
67 | 89 |
68 DISALLOW_COPY_AND_ASSIGN(ZoomController); | 90 DISALLOW_COPY_AND_ASSIGN(ZoomController); |
69 }; | 91 }; |
70 | 92 |
71 #endif // CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ | 93 #endif // CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |
OLD | NEW |