OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ |
6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ | 6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/task_management/providers/task.h" | 12 #include "chrome/browser/task_management/providers/task.h" |
12 | 13 |
13 class ProcessResourceUsage; | 14 class ProcessResourceUsage; |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 struct ChildProcessData; | 17 struct ChildProcessData; |
17 } // namespace content | 18 } // namespace content |
18 | 19 |
19 namespace task_management { | 20 namespace task_management { |
20 | 21 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // memory or not. | 59 // memory or not. |
59 const bool uses_v8_memory_; | 60 const bool uses_v8_memory_; |
60 | 61 |
61 DISALLOW_COPY_AND_ASSIGN(ChildProcessTask); | 62 DISALLOW_COPY_AND_ASSIGN(ChildProcessTask); |
62 }; | 63 }; |
63 | 64 |
64 } // namespace task_management | 65 } // namespace task_management |
65 | 66 |
66 | 67 |
67 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ | 68 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ |
OLD | NEW |