| 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
|
|
|