diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 16:57:03 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 16:57:03 +0000 |
commit | 8e38341c65360b48c32b88c58d6ac490516c0c0c (patch) | |
tree | 381bfdd42b59c1c4fa2368dec5ed479d83ab6f16 /chrome/browser/memory_details.h | |
parent | 0b97feeb41cb115158741daa975ec95d2e10cace (diff) | |
download | chromium_src-8e38341c65360b48c32b88c58d6ac490516c0c0c.zip chromium_src-8e38341c65360b48c32b88c58d6ac490516c0c0c.tar.gz chromium_src-8e38341c65360b48c32b88c58d6ac490516c0c0c.tar.bz2 |
FBTF: Even more ctor/virtual deinlining.
(Only 424k off Linux debug .a files).
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3859003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63059 0039d316-1c4b-4281-b951-d872f2087c98
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 |