diff options
Diffstat (limited to 'chrome/browser/memory_details.h')
-rw-r--r-- | chrome/browser/memory_details.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/chrome/browser/memory_details.h b/chrome/browser/memory_details.h index e9ceb464..1513ab4 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 |