OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_resource_providers.h" | 5 #include "chrome/browser/task_manager/task_manager_resource_providers.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
10 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "chrome/browser/browser_list.h" | 22 #include "chrome/browser/browser_list.h" |
23 #include "chrome/browser/browser_process.h" | 23 #include "chrome/browser/browser_process.h" |
24 #include "chrome/browser/browser_thread.h" | 24 #include "chrome/browser/browser_thread.h" |
25 #include "chrome/browser/extensions/extension_host.h" | 25 #include "chrome/browser/extensions/extension_host.h" |
26 #include "chrome/browser/extensions/extension_process_manager.h" | 26 #include "chrome/browser/extensions/extension_process_manager.h" |
27 #include "chrome/browser/extensions/extensions_service.h" | 27 #include "chrome/browser/extensions/extensions_service.h" |
28 #include "chrome/browser/notifications/balloon_collection.h" | 28 #include "chrome/browser/notifications/balloon_collection.h" |
29 #include "chrome/browser/notifications/balloon_host.h" | 29 #include "chrome/browser/notifications/balloon_host.h" |
30 #include "chrome/browser/notifications/notification_ui_manager.h" | 30 #include "chrome/browser/notifications/notification_ui_manager.h" |
31 #include "chrome/browser/profiles/profile_manager.h" | 31 #include "chrome/browser/profiles/profile_manager.h" |
| 32 #include "chrome/browser/renderer_host/render_message_filter.h" |
32 #include "chrome/browser/renderer_host/render_process_host.h" | 33 #include "chrome/browser/renderer_host/render_process_host.h" |
33 #include "chrome/browser/renderer_host/render_view_host.h" | 34 #include "chrome/browser/renderer_host/render_view_host.h" |
34 #include "chrome/browser/renderer_host/resource_message_filter.h" | |
35 #include "chrome/browser/tab_contents/background_contents.h" | 35 #include "chrome/browser/tab_contents/background_contents.h" |
36 #include "chrome/browser/tab_contents/tab_contents.h" | 36 #include "chrome/browser/tab_contents/tab_contents.h" |
37 #include "chrome/browser/tab_contents/tab_util.h" | 37 #include "chrome/browser/tab_contents/tab_util.h" |
38 #include "chrome/common/extensions/extension.h" | 38 #include "chrome/common/extensions/extension.h" |
39 #include "chrome/common/notification_service.h" | 39 #include "chrome/common/notification_service.h" |
40 #include "chrome/common/render_messages.h" | 40 #include "chrome/common/render_messages.h" |
41 #include "chrome/common/sqlite_utils.h" | 41 #include "chrome/common/sqlite_utils.h" |
42 #include "grit/generated_resources.h" | 42 #include "grit/generated_resources.h" |
43 #include "grit/theme_resources.h" | 43 #include "grit/theme_resources.h" |
44 | 44 |
(...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1263 | 1263 |
1264 return &resource_; | 1264 return &resource_; |
1265 } | 1265 } |
1266 | 1266 |
1267 void TaskManagerBrowserProcessResourceProvider::StartUpdating() { | 1267 void TaskManagerBrowserProcessResourceProvider::StartUpdating() { |
1268 task_manager_->AddResource(&resource_); | 1268 task_manager_->AddResource(&resource_); |
1269 } | 1269 } |
1270 | 1270 |
1271 void TaskManagerBrowserProcessResourceProvider::StopUpdating() { | 1271 void TaskManagerBrowserProcessResourceProvider::StopUpdating() { |
1272 } | 1272 } |
OLD | NEW |