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

Unified Diff: chrome/browser/memory_details.h

Issue 3859003: FBTF: Even more ctor/virtual deinlining. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/memory_details.h
diff --git a/chrome/browser/memory_details.h b/chrome/browser/memory_details.h
index e9ceb46417d629af14e84d2cbeb35641e8958f11..1513ab466236f7824a022ed97bc941de565f0fbe 100644
--- a/chrome/browser/memory_details.h
+++ b/chrome/browser/memory_details.h
@@ -16,12 +16,8 @@
// have multiple processes (of course!). Even IE has multiple
// processes these days.
struct ProcessMemoryInformation {
- ProcessMemoryInformation()
- : pid(0),
- num_processes(0),
- is_diagnostics(false),
- type(ChildProcessInfo::UNKNOWN_PROCESS) {
- }
+ ProcessMemoryInformation();
+ ~ProcessMemoryInformation();
// The process id.
base::ProcessId pid;
@@ -101,7 +97,7 @@ class MemoryDetails : public base::RefCountedThreadSafe<MemoryDetails> {
protected:
friend class base::RefCountedThreadSafe<MemoryDetails>;
- virtual ~MemoryDetails() {}
+ virtual ~MemoryDetails();
private:
// Collect child process information on the IO thread. This is needed because

Powered by Google App Engine
This is Rietveld 408576698