| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/renderer_resource.h" | 5 #include "chrome/browser/task_manager/renderer_resource.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | |
| 8 #include "chrome/browser/devtools/devtools_window.h" | 7 #include "chrome/browser/devtools/devtools_window.h" |
| 9 #include "chrome/browser/process_resource_usage.h" | 8 #include "chrome/browser/process_resource_usage.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/task_manager/resource_provider.h" | 10 #include "chrome/browser/task_manager/resource_provider.h" |
| 12 #include "chrome/browser/task_manager/task_manager_util.h" | 11 #include "chrome/browser/task_manager/task_manager_util.h" |
| 13 #include "content/public/browser/render_process_host.h" | 12 #include "content/public/browser/render_process_host.h" |
| 14 #include "content/public/browser/render_view_host.h" | 13 #include "content/public/browser/render_view_host.h" |
| 15 #include "content/public/common/service_registry.h" | 14 #include "content/public/common/service_registry.h" |
| 16 | 15 |
| 17 namespace task_manager { | 16 namespace task_manager { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 76 |
| 78 bool RendererResource::ReportsV8MemoryStats() const { | 77 bool RendererResource::ReportsV8MemoryStats() const { |
| 79 return true; | 78 return true; |
| 80 } | 79 } |
| 81 | 80 |
| 82 bool RendererResource::SupportNetworkUsage() const { | 81 bool RendererResource::SupportNetworkUsage() const { |
| 83 return true; | 82 return true; |
| 84 } | 83 } |
| 85 | 84 |
| 86 } // namespace task_manager | 85 } // namespace task_manager |
| OLD | NEW |