diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 17:08:20 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 17:08:20 +0000 |
commit | 601858c0f72ea9693a4796fe6b48558efde46ed7 (patch) | |
tree | f9102a4e748ce2f2257f86a748ba6ecfb7087141 /net/disk_cache/eviction.h | |
parent | a0709c0dafd07a463a1e9b3553554a0be6cec862 (diff) | |
download | chromium_src-601858c0f72ea9693a4796fe6b48558efde46ed7.zip chromium_src-601858c0f72ea9693a4796fe6b48558efde46ed7.tar.gz chromium_src-601858c0f72ea9693a4796fe6b48558efde46ed7.tar.bz2 |
FBTF: Move more ctors/dtors from headers to implementation.
- Adding/Moving dtors of objects that have CancelableRequestConsumers shaves
three megs off browser.a.
- Adding/Moving dtors of objects that have ScopedRunnableMethodFactories only
shaved 100k off browser.a/renderer.a.
- Adding/Moving dtors of objects that used some form of base::*Timer<> was
negligible; there were only a few classes that had a Timer but had a
ctor/dtor in the header after the previous cleanups.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3278006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58192 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/eviction.h')
-rw-r--r-- | net/disk_cache/eviction.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/disk_cache/eviction.h b/net/disk_cache/eviction.h index 69736ea..6b13dc0 100644 --- a/net/disk_cache/eviction.h +++ b/net/disk_cache/eviction.h @@ -7,7 +7,6 @@ #pragma once #include "base/basictypes.h" -#include "base/compiler_specific.h" #include "base/task.h" #include "net/disk_cache/disk_format.h" #include "net/disk_cache/rankings.h" @@ -21,10 +20,8 @@ class EntryImpl; // integrated with BackendImpl. class Eviction { public: - Eviction() - : backend_(NULL), init_(false), - ALLOW_THIS_IN_INITIALIZER_LIST(factory_(this)) {} - ~Eviction() {} + Eviction(); + ~Eviction(); void Init(BackendImpl* backend); void Stop(); |