diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 23:42:53 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-16 23:42:53 +0000 |
commit | 926c41c911f745cadd28998ab36efd7123c15a37 (patch) | |
tree | dce57ac63a5b7d079e7afc90fdaf2807c46afffe /net/disk_cache | |
parent | ac7446a69411c2fd95793ad58f36171188ae41ac (diff) | |
download | chromium_src-926c41c911f745cadd28998ab36efd7123c15a37.zip chromium_src-926c41c911f745cadd28998ab36efd7123c15a37.tar.gz chromium_src-926c41c911f745cadd28998ab36efd7123c15a37.tar.bz2 |
Disk cache: Always initialize disabled_
BUG=73129
TEST=none
Review URL: http://codereview.chromium.org/6529056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75203 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache')
-rw-r--r-- | net/disk_cache/backend_impl.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/disk_cache/backend_impl.cc b/net/disk_cache/backend_impl.cc index dfa9e51..739af0b 100644 --- a/net/disk_cache/backend_impl.cc +++ b/net/disk_cache/backend_impl.cc @@ -360,6 +360,7 @@ BackendImpl::BackendImpl(const FilePath& path, restarted_(false), unit_test_(false), read_only_(false), + disabled_(false), new_eviction_(false), first_timer_(true), throttle_requests_(false), @@ -386,6 +387,7 @@ BackendImpl::BackendImpl(const FilePath& path, restarted_(false), unit_test_(false), read_only_(false), + disabled_(false), new_eviction_(false), first_timer_(true), throttle_requests_(false), |