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

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

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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 <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
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_
OLDNEW
« no previous file with comments | « chrome/browser/task_management/sampling/task_group_sampler.h ('k') | chrome/browser/ui/app_list/app_list_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698