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 #include "chrome/browser/ui/zoom/zoom_controller.h" | 5 #include "chrome/browser/ui/zoom/zoom_controller.h" |
6 | 6 |
7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
8 #include "chrome/browser/chrome_notification_types.h" | 8 #include "chrome/browser/chrome_notification_types.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/ui/browser_finder.h" | 10 #include "chrome/browser/ui/browser_finder.h" |
11 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
12 #include "content/public/browser/host_zoom_map.h" | 12 #include "content/public/browser/host_zoom_map.h" |
13 #include "content/public/browser/navigation_entry.h" | 13 #include "content/public/browser/navigation_entry.h" |
14 #include "content/public/browser/notification_details.h" | 14 #include "content/public/browser/notification_details.h" |
15 #include "content/public/browser/notification_service.h" | 15 #include "content/public/browser/notification_service.h" |
16 #include "content/public/browser/notification_types.h" | 16 #include "content/public/browser/notification_types.h" |
17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
18 #include "content/public/common/page_zoom.h" | 18 #include "content/public/common/page_zoom.h" |
19 #include "grit/theme_resources.h" | 19 #include "grit/theme_resources.h" |
20 #include "net/base/net_util.h" | 20 #include "net/base/net_util.h" |
21 | 21 |
22 DEFINE_WEB_CONTENTS_USER_DATA_KEY(ZoomController); | 22 DEFINE_WEB_CONTENTS_USER_DATA_KEY(ZoomController); |
23 | 23 |
24 ZoomController::ZoomController(content::WebContents* web_contents) | 24 ZoomController::ZoomController(content::WebContents* web_contents) |
25 : content::WebContentsObserver(web_contents), | 25 : content::WebContentsObserver(web_contents), |
26 zoom_percent_(100), | 26 zoom_percent_(100), |
27 observer_(NULL), | 27 observer_(NULL), |
28 browser_context_(web_contents->GetBrowserContext()), | 28 browser_context_(web_contents->GetBrowserContext()) { |
29 zoom_callback_(base::Bind(&ZoomController::OnZoomLevelChanged, | |
30 base::Unretained(this))) { | |
31 Profile* profile = | 29 Profile* profile = |
32 Profile::FromBrowserContext(web_contents->GetBrowserContext()); | 30 Profile::FromBrowserContext(web_contents->GetBrowserContext()); |
33 default_zoom_level_.Init(prefs::kDefaultZoomLevel, profile->GetPrefs(), | 31 default_zoom_level_.Init(prefs::kDefaultZoomLevel, profile->GetPrefs(), |
34 base::Bind(&ZoomController::UpdateState, | 32 base::Bind(&ZoomController::UpdateState, |
35 base::Unretained(this), | 33 base::Unretained(this), |
36 std::string())); | 34 std::string())); |
37 | 35 |
38 content::HostZoomMap::GetForBrowserContext( | 36 zoom_subscription_ = content::HostZoomMap::GetForBrowserContext( |
39 browser_context_)->AddZoomLevelChangedCallback( | 37 browser_context_)->AddZoomLevelChangedCallback( |
40 zoom_callback_); | 38 base::Bind(&ZoomController::OnZoomLevelChanged, |
| 39 base::Unretained(this))); |
41 | 40 |
42 UpdateState(std::string()); | 41 UpdateState(std::string()); |
43 } | 42 } |
44 | 43 |
45 ZoomController::~ZoomController() { | 44 ZoomController::~ZoomController() {} |
46 content::HostZoomMap::GetForBrowserContext( | |
47 browser_context_)->RemoveZoomLevelChangedCallback( | |
48 zoom_callback_); | |
49 } | |
50 | 45 |
51 bool ZoomController::IsAtDefaultZoom() const { | 46 bool ZoomController::IsAtDefaultZoom() const { |
52 return content::ZoomValuesEqual(web_contents()->GetZoomLevel(), | 47 return content::ZoomValuesEqual(web_contents()->GetZoomLevel(), |
53 default_zoom_level_.GetValue()); | 48 default_zoom_level_.GetValue()); |
54 } | 49 } |
55 | 50 |
56 int ZoomController::GetResourceForZoomLevel() const { | 51 int ZoomController::GetResourceForZoomLevel() const { |
57 if (IsAtDefaultZoom()) | 52 if (IsAtDefaultZoom()) |
58 return IDR_ZOOM_NORMAL; | 53 return IDR_ZOOM_NORMAL; |
59 double zoom = web_contents()->GetZoomLevel(); | 54 double zoom = web_contents()->GetZoomLevel(); |
(...skipping 25 matching lines...) Expand all Loading... |
85 return; | 80 return; |
86 } | 81 } |
87 } | 82 } |
88 | 83 |
89 bool dummy; | 84 bool dummy; |
90 zoom_percent_ = web_contents()->GetZoomPercent(&dummy, &dummy); | 85 zoom_percent_ = web_contents()->GetZoomPercent(&dummy, &dummy); |
91 | 86 |
92 if (observer_) | 87 if (observer_) |
93 observer_->OnZoomChanged(web_contents(), !host.empty()); | 88 observer_->OnZoomChanged(web_contents(), !host.empty()); |
94 } | 89 } |
OLD | NEW |