OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_H_ | 5 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ | 6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
19 #include "chrome/browser/renderer_host/web_cache_manager.h" | |
20 #include "chrome/browser/task_manager/resource_provider.h" | 19 #include "chrome/browser/task_manager/resource_provider.h" |
21 #include "chrome/browser/ui/host_desktop.h" | 20 #include "chrome/browser/ui/host_desktop.h" |
21 #include "components/web_cache/browser/web_cache_manager.h" | |
James Cook
2014/09/05 16:53:18
Is this header used?
Xi Han
2014/09/05 19:39:24
Removed.
| |
22 #include "content/public/common/gpu_memory_stats.h" | 22 #include "content/public/common/gpu_memory_stats.h" |
23 #include "third_party/WebKit/public/web/WebCache.h" | 23 #include "third_party/WebKit/public/web/WebCache.h" |
24 | 24 |
25 class PrefRegistrySimple; | 25 class PrefRegistrySimple; |
26 class TaskManagerModel; | 26 class TaskManagerModel; |
27 class TaskManagerModelGpuDataManagerObserver; | 27 class TaskManagerModelGpuDataManagerObserver; |
28 | 28 |
29 namespace base { | 29 namespace base { |
30 class ProcessMetrics; | 30 class ProcessMetrics; |
31 } | 31 } |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
545 // All per-Resource values are stored here. | 545 // All per-Resource values are stored here. |
546 mutable PerResourceCache per_resource_cache_; | 546 mutable PerResourceCache per_resource_cache_; |
547 | 547 |
548 // All per-Process values are stored here. | 548 // All per-Process values are stored here. |
549 mutable PerProcessCache per_process_cache_; | 549 mutable PerProcessCache per_process_cache_; |
550 | 550 |
551 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); | 551 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); |
552 }; | 552 }; |
553 | 553 |
554 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ | 554 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
OLD | NEW |