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

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

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_MEMORY_DETAILS_H_ 5 #ifndef CHROME_BROWSER_MEMORY_DETAILS_H_
6 #define CHROME_BROWSER_MEMORY_DETAILS_H_ 6 #define CHROME_BROWSER_MEMORY_DETAILS_H_
7 7
8
9 #include <string>
Dean McNamee 2009/02/19 11:50:32 why did you remove string when it uses std::wstrin
10 #include <vector> 8 #include <vector>
11 9
12 #include "base/file_path.h"
13 #include "base/process_util.h" 10 #include "base/process_util.h"
14 #include "base/ref_counted.h" 11 #include "base/ref_counted.h"
15 #include "chrome/common/child_process_info.h" 12 #include "chrome/common/child_process_info.h"
16 13
17 class MessageLoop; 14 class MessageLoop;
18 15
19 // We collect data about each browser process. A browser may 16 // We collect data about each browser process. A browser may
20 // have multiple processes (of course!). Even IE has multiple 17 // have multiple processes (of course!). Even IE has multiple
21 // processes these days. 18 // processes these days.
22 struct ProcessMemoryInformation { 19 struct ProcessMemoryInformation {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 void UpdateHistograms(); 122 void UpdateHistograms();
126 123
127 ProcessData process_data_[MAX_BROWSERS]; 124 ProcessData process_data_[MAX_BROWSERS];
128 MessageLoop* ui_loop_; 125 MessageLoop* ui_loop_;
129 126
130 DISALLOW_EVIL_CONSTRUCTORS(MemoryDetails); 127 DISALLOW_EVIL_CONSTRUCTORS(MemoryDetails);
131 }; 128 };
132 129
133 #endif // CHROME_BROWSER_MEMORY_DETAILS_H_ 130 #endif // CHROME_BROWSER_MEMORY_DETAILS_H_
134 131
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698