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

Side by Side Diff: chrome/browser/task_manager/task_manager.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/task_manager/task_manager.h" 5 #include "chrome/browser/task_manager/task_manager.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/i18n/number_formatting.h" 8 #include "base/i18n/number_formatting.h"
9 #include "base/i18n/rtl.h" 9 #include "base/i18n/rtl.h"
10 #include "base/location.h" 10 #include "base/location.h"
(...skipping 14 matching lines...) Expand all
25 #include "chrome/browser/task_manager/browser_process_resource_provider.h" 25 #include "chrome/browser/task_manager/browser_process_resource_provider.h"
26 #include "chrome/browser/task_manager/child_process_resource_provider.h" 26 #include "chrome/browser/task_manager/child_process_resource_provider.h"
27 #include "chrome/browser/task_manager/extension_information.h" 27 #include "chrome/browser/task_manager/extension_information.h"
28 #include "chrome/browser/task_manager/guest_information.h" 28 #include "chrome/browser/task_manager/guest_information.h"
29 #include "chrome/browser/task_manager/panel_information.h" 29 #include "chrome/browser/task_manager/panel_information.h"
30 #include "chrome/browser/task_manager/printing_information.h" 30 #include "chrome/browser/task_manager/printing_information.h"
31 #include "chrome/browser/task_manager/resource_provider.h" 31 #include "chrome/browser/task_manager/resource_provider.h"
32 #include "chrome/browser/task_manager/tab_contents_information.h" 32 #include "chrome/browser/task_manager/tab_contents_information.h"
33 #include "chrome/browser/task_manager/web_contents_resource_provider.h" 33 #include "chrome/browser/task_manager/web_contents_resource_provider.h"
34 #include "chrome/browser/ui/browser_navigator.h" 34 #include "chrome/browser/ui/browser_navigator.h"
35 #include "chrome/browser/ui/browser_navigator_params.h"
35 #include "chrome/browser/ui/user_manager.h" 36 #include "chrome/browser/ui/user_manager.h"
36 #include "chrome/common/pref_names.h" 37 #include "chrome/common/pref_names.h"
37 #include "chrome/common/url_constants.h" 38 #include "chrome/common/url_constants.h"
38 #include "chrome/grit/generated_resources.h" 39 #include "chrome/grit/generated_resources.h"
39 #include "components/nacl/browser/nacl_browser.h" 40 #include "components/nacl/browser/nacl_browser.h"
40 #include "content/public/browser/browser_thread.h" 41 #include "content/public/browser/browser_thread.h"
41 #include "content/public/browser/gpu_data_manager.h" 42 #include "content/public/browser/gpu_data_manager.h"
42 #include "content/public/browser/gpu_data_manager_observer.h" 43 #include "content/public/browser/gpu_data_manager_observer.h"
43 #include "content/public/browser/resource_request_info.h" 44 #include "content/public/browser/resource_request_info.h"
44 #include "content/public/browser/web_contents.h" 45 #include "content/public/browser/web_contents.h"
(...skipping 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 params.host_desktop_type = desktop_type; 1568 params.host_desktop_type = desktop_type;
1568 chrome::Navigate(&params); 1569 chrome::Navigate(&params);
1569 } 1570 }
1570 1571
1571 TaskManager::TaskManager() 1572 TaskManager::TaskManager()
1572 : model_(new TaskManagerModel(this)) { 1573 : model_(new TaskManagerModel(this)) {
1573 } 1574 }
1574 1575
1575 TaskManager::~TaskManager() { 1576 TaskManager::~TaskManager() {
1576 } 1577 }
OLDNEW
« no previous file with comments | « chrome/browser/supervised_user/supervised_user_browsertest.cc ('k') | chrome/browser/task_manager/task_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698