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

Side by Side Diff: chrome/browser/ui/panels/panel_host.cc

Issue 1381633002: Cleanup: IWYU for browser_navigator.h and browser_navigator_params.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, fix merge conflict Created 5 years, 2 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 (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/location.h" 8 #include "base/location.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/thread_task_runner_handle.h"
12 #include "chrome/browser/chrome_notification_types.h" 12 #include "chrome/browser/chrome_notification_types.h"
13 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h" 13 #include "chrome/browser/extensions/chrome_extension_web_contents_observer.h"
14 #include "chrome/browser/extensions/window_controller.h" 14 #include "chrome/browser/extensions/window_controller.h"
15 #include "chrome/browser/favicon/favicon_utils.h" 15 #include "chrome/browser/favicon/favicon_utils.h"
16 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/sessions/session_tab_helper.h" 17 #include "chrome/browser/sessions/session_tab_helper.h"
18 #include "chrome/browser/ui/browser_navigator.h" 18 #include "chrome/browser/ui/browser_navigator.h"
19 #include "chrome/browser/ui/browser_navigator_params.h"
19 #include "chrome/browser/ui/panels/panel.h" 20 #include "chrome/browser/ui/panels/panel.h"
20 #include "chrome/browser/ui/prefs/prefs_tab_helper.h" 21 #include "chrome/browser/ui/prefs/prefs_tab_helper.h"
21 #include "components/favicon/content/content_favicon_driver.h" 22 #include "components/favicon/content/content_favicon_driver.h"
22 #include "components/ui/zoom/page_zoom.h" 23 #include "components/ui/zoom/page_zoom.h"
23 #include "components/ui/zoom/zoom_controller.h" 24 #include "components/ui/zoom/zoom_controller.h"
24 #include "content/public/browser/invalidate_type.h" 25 #include "content/public/browser/invalidate_type.h"
25 #include "content/public/browser/navigation_controller.h" 26 #include "content/public/browser/navigation_controller.h"
26 #include "content/public/browser/notification_service.h" 27 #include "content/public/browser/notification_service.h"
27 #include "content/public/browser/notification_source.h" 28 #include "content/public/browser/notification_source.h"
28 #include "content/public/browser/notification_types.h" 29 #include "content/public/browser/notification_types.h"
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 } 240 }
240 241
241 void PanelHost::StopLoading() { 242 void PanelHost::StopLoading() {
242 content::RecordAction(UserMetricsAction("Stop")); 243 content::RecordAction(UserMetricsAction("Stop"));
243 web_contents_->Stop(); 244 web_contents_->Stop();
244 } 245 }
245 246
246 void PanelHost::Zoom(content::PageZoom zoom) { 247 void PanelHost::Zoom(content::PageZoom zoom) {
247 ui_zoom::PageZoom::Zoom(web_contents_.get(), zoom); 248 ui_zoom::PageZoom::Zoom(web_contents_.get(), zoom);
248 } 249 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/omnibox/omnibox_view_browsertest.cc ('k') | chrome/browser/ui/passwords/manage_passwords_ui_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698