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_MANAGER_TASK_MANAGER_INTERFACE_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_INTERFACE_H_ |
6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_INTERFACE_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_INTERFACE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <memory> | 11 #include <memory> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/memory_coordinator_client.h" | 15 #include "base/memory/memory_coordinator_client.h" |
16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
17 #include "base/process/kill.h" | 17 #include "base/process/kill.h" |
18 #include "base/process/process_handle.h" | 18 #include "base/process/process_handle.h" |
19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
20 #include "base/timer/timer.h" | 20 #include "base/timer/timer.h" |
21 #include "chrome/browser/task_manager/providers/task.h" | 21 #include "chrome/browser/task_manager/providers/task.h" |
22 #include "chrome/browser/task_manager/task_manager_observer.h" | 22 #include "chrome/browser/task_manager/task_manager_observer.h" |
23 #include "third_party/WebKit/public/web/WebCache.h" | 23 #include "third_party/WebKit/public/platform/WebCache.h" |
24 #include "ui/gfx/image/image_skia.h" | 24 #include "ui/gfx/image/image_skia.h" |
25 | 25 |
26 class PrefRegistrySimple; | 26 class PrefRegistrySimple; |
27 | 27 |
28 namespace content { | 28 namespace content { |
29 class WebContents; | 29 class WebContents; |
30 } // namespace content | 30 } // namespace content |
31 | 31 |
32 namespace net { | 32 namespace net { |
33 class URLRequest; | 33 class URLRequest; |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 | 286 |
287 // The flags containing the enabled resources types calculations. | 287 // The flags containing the enabled resources types calculations. |
288 int64_t enabled_resources_flags_; | 288 int64_t enabled_resources_flags_; |
289 | 289 |
290 DISALLOW_COPY_AND_ASSIGN(TaskManagerInterface); | 290 DISALLOW_COPY_AND_ASSIGN(TaskManagerInterface); |
291 }; | 291 }; |
292 | 292 |
293 } // namespace task_manager | 293 } // namespace task_manager |
294 | 294 |
295 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_INTERFACE_H_ | 295 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_INTERFACE_H_ |
OLD | NEW |