Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: chrome/browser/task_manager/task_manager.h

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
22 #include "content/public/common/gpu_memory_stats.h" 21 #include "content/public/common/gpu_memory_stats.h"
23 #include "third_party/WebKit/public/web/WebCache.h" 22 #include "third_party/WebKit/public/web/WebCache.h"
24 23
25 class PrefRegistrySimple; 24 class PrefRegistrySimple;
26 class TaskManagerModel; 25 class TaskManagerModel;
27 class TaskManagerModelGpuDataManagerObserver; 26 class TaskManagerModelGpuDataManagerObserver;
28 27
29 namespace base { 28 namespace base {
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 // All per-Resource values are stored here. 541 // All per-Resource values are stored here.
543 mutable PerResourceCache per_resource_cache_; 542 mutable PerResourceCache per_resource_cache_;
544 543
545 // All per-Process values are stored here. 544 // All per-Process values are stored here.
546 mutable PerProcessCache per_process_cache_; 545 mutable PerProcessCache per_process_cache_;
547 546
548 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); 547 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel);
549 }; 548 };
550 549
551 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ 550 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698