diff options
author | pasko@google.com <pasko@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 19:51:14 +0000 |
---|---|---|
committer | pasko@google.com <pasko@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 19:51:14 +0000 |
commit | 4db6de3759e3631da5fdc185d890366ff535c985 (patch) | |
tree | 69e60e1a6d8d7d5e7eae4064471e3228f07a29e1 /net/disk_cache/cache_util.h | |
parent | 72fc60e9032c1004c9588d0b357e0d0645dcd4c3 (diff) | |
download | chromium_src-4db6de3759e3631da5fdc185d890366ff535c985.zip chromium_src-4db6de3759e3631da5fdc185d890366ff535c985.tar.gz chromium_src-4db6de3759e3631da5fdc185d890366ff535c985.tar.bz2 |
Fix the simple cache backend enabling.
The simple backend was created but then the pointer to it was overwritten to
NULL.
BUG=173384
Review URL: https://chromiumcodereview.appspot.com/13539002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192123 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/cache_util.h')
-rw-r--r-- | net/disk_cache/cache_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/disk_cache/cache_util.h b/net/disk_cache/cache_util.h index d5cbe1a..f7c4c8e 100644 --- a/net/disk_cache/cache_util.h +++ b/net/disk_cache/cache_util.h @@ -68,6 +68,7 @@ class NET_EXPORT_PRIVATE CacheCreator { net::CompletionCallback callback_; disk_cache::Backend* created_cache_; net::NetLog* net_log_; + bool use_simple_cache_backend_; DISALLOW_COPY_AND_ASSIGN(CacheCreator); }; |