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/panels/panel_host.h" | 5 #include "chrome/browser/ui/panels/panel_host.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "chrome/browser/chrome_notification_types.h" | 10 #include "chrome/browser/chrome_notification_types.h" |
11 #include "chrome/browser/chrome_page_zoom.h" | 11 #include "chrome/browser/chrome_page_zoom.h" |
12 #include "chrome/browser/extensions/extension_web_contents_observer.h" | 12 #include "chrome/browser/extensions/extension_web_contents_observer.h" |
13 #include "chrome/browser/extensions/window_controller.h" | 13 #include "chrome/browser/extensions/window_controller.h" |
14 #include "chrome/browser/favicon/favicon_tab_helper.h" | 14 #include "chrome/browser/favicon/favicon_tab_helper.h" |
15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/sessions/session_tab_helper.h" | 16 #include "chrome/browser/sessions/session_tab_helper.h" |
17 #include "chrome/browser/ui/browser_navigator.h" | 17 #include "chrome/browser/ui/browser_navigator.h" |
18 #include "chrome/browser/ui/panels/panel.h" | 18 #include "chrome/browser/ui/panels/panel.h" |
19 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" | 19 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" |
20 #include "chrome/common/extensions/extension_messages.h" | |
21 #include "content/public/browser/invalidate_type.h" | 20 #include "content/public/browser/invalidate_type.h" |
22 #include "content/public/browser/navigation_controller.h" | 21 #include "content/public/browser/navigation_controller.h" |
23 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
24 #include "content/public/browser/notification_source.h" | 23 #include "content/public/browser/notification_source.h" |
25 #include "content/public/browser/notification_types.h" | 24 #include "content/public/browser/notification_types.h" |
26 #include "content/public/browser/render_view_host.h" | 25 #include "content/public/browser/render_view_host.h" |
27 #include "content/public/browser/site_instance.h" | 26 #include "content/public/browser/site_instance.h" |
28 #include "content/public/browser/user_metrics.h" | 27 #include "content/public/browser/user_metrics.h" |
29 #include "content/public/browser/web_contents.h" | 28 #include "content/public/browser/web_contents.h" |
30 #include "extensions/browser/view_type_utils.h" | 29 #include "extensions/browser/view_type_utils.h" |
| 30 #include "extensions/common/extension_messages.h" |
31 #include "ipc/ipc_message.h" | 31 #include "ipc/ipc_message.h" |
32 #include "ipc/ipc_message_macros.h" | 32 #include "ipc/ipc_message_macros.h" |
33 #include "ui/gfx/image/image.h" | 33 #include "ui/gfx/image/image.h" |
34 #include "ui/gfx/rect.h" | 34 #include "ui/gfx/rect.h" |
35 | 35 |
36 using base::UserMetricsAction; | 36 using base::UserMetricsAction; |
37 | 37 |
38 PanelHost::PanelHost(Panel* panel, Profile* profile) | 38 PanelHost::PanelHost(Panel* panel, Profile* profile) |
39 : panel_(panel), | 39 : panel_(panel), |
40 profile_(profile), | 40 profile_(profile), |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 } | 259 } |
260 | 260 |
261 void PanelHost::StopLoading() { | 261 void PanelHost::StopLoading() { |
262 content::RecordAction(UserMetricsAction("Stop")); | 262 content::RecordAction(UserMetricsAction("Stop")); |
263 web_contents_->Stop(); | 263 web_contents_->Stop(); |
264 } | 264 } |
265 | 265 |
266 void PanelHost::Zoom(content::PageZoom zoom) { | 266 void PanelHost::Zoom(content::PageZoom zoom) { |
267 chrome_page_zoom::Zoom(web_contents_.get(), zoom); | 267 chrome_page_zoom::Zoom(web_contents_.get(), zoom); |
268 } | 268 } |
OLD | NEW |