| 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 #ifndef CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ |
| 6 #define CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include <stddef.h> |
| 9 |
| 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/task_manager/resource_provider.h" | 12 #include "chrome/browser/task_manager/resource_provider.h" |
| 11 | 13 |
| 12 class ProcessResourceUsage; | 14 class ProcessResourceUsage; |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 class RenderViewHost; | 17 class RenderViewHost; |
| 16 } | 18 } |
| 17 | 19 |
| 18 namespace task_manager { | 20 namespace task_manager { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 content::RenderViewHost* render_view_host_; | 58 content::RenderViewHost* render_view_host_; |
| 57 | 59 |
| 58 scoped_ptr<ProcessResourceUsage> process_resource_usage_; | 60 scoped_ptr<ProcessResourceUsage> process_resource_usage_; |
| 59 | 61 |
| 60 DISALLOW_COPY_AND_ASSIGN(RendererResource); | 62 DISALLOW_COPY_AND_ASSIGN(RendererResource); |
| 61 }; | 63 }; |
| 62 | 64 |
| 63 } // namespace task_manager | 65 } // namespace task_manager |
| 64 | 66 |
| 65 #endif // CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ | 67 #endif // CHROME_BROWSER_TASK_MANAGER_RENDERER_RESOURCE_H_ |
| OLD | NEW |