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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/singleton.h" | 19 #include "base/memory/singleton.h" |
19 #include "base/observer_list.h" | 20 #include "base/observer_list.h" |
20 #include "base/strings/string16.h" | 21 #include "base/strings/string16.h" |
21 #include "build/build_config.h" | 22 #include "build/build_config.h" |
22 #include "chrome/browser/task_manager/resource_provider.h" | 23 #include "chrome/browser/task_manager/resource_provider.h" |
23 #include "gpu/ipc/common/memory_stats.h" | 24 #include "gpu/ipc/common/memory_stats.h" |
24 #include "third_party/WebKit/public/web/WebCache.h" | 25 #include "third_party/WebKit/public/web/WebCache.h" |
25 | 26 |
26 class PrefRegistrySimple; | 27 class PrefRegistrySimple; |
27 class PrivateWorkingSetSnapshot; | 28 class PrivateWorkingSetSnapshot; |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 // All per-Resource values are stored here. | 549 // All per-Resource values are stored here. |
549 mutable PerResourceCache per_resource_cache_; | 550 mutable PerResourceCache per_resource_cache_; |
550 | 551 |
551 // All per-Process values are stored here. | 552 // All per-Process values are stored here. |
552 mutable PerProcessCache per_process_cache_; | 553 mutable PerProcessCache per_process_cache_; |
553 | 554 |
554 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); | 555 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); |
555 }; | 556 }; |
556 | 557 |
557 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ | 558 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ |
OLD | NEW |