diff options
Diffstat (limited to 'net/disk_cache/eviction.cc')
-rw-r--r-- | net/disk_cache/eviction.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/disk_cache/eviction.cc b/net/disk_cache/eviction.cc index 8da01ae..da7577c 100644 --- a/net/disk_cache/eviction.cc +++ b/net/disk_cache/eviction.cc @@ -28,6 +28,7 @@ #include "net/disk_cache/eviction.h" +#include "base/compiler_specific.h" #include "base/logging.h" #include "base/message_loop.h" #include "base/string_util.h" @@ -58,6 +59,15 @@ int LowWaterAdjust(int high_water) { namespace disk_cache { +Eviction::Eviction() + : backend_(NULL), + init_(false), + ALLOW_THIS_IN_INITIALIZER_LIST(factory_(this)) { +} + +Eviction::~Eviction() { +} + void Eviction::Init(BackendImpl* backend) { // We grab a bunch of info from the backend to make the code a little cleaner // when we're actually doing work. |