diff options
author | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-26 20:23:43 +0000 |
---|---|---|
committer | gavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-26 20:23:43 +0000 |
commit | db1156813ca4e0c82a36bb1ded160f00f579b1c6 (patch) | |
tree | 38e289dd86f34958a27bbcf0afc32bbfe60232e2 /net/disk_cache/backend_unittest.cc | |
parent | 61e3f8e0af467ebcffe7f9f7d5a8d5565ea29067 (diff) | |
download | chromium_src-db1156813ca4e0c82a36bb1ded160f00f579b1c6.zip chromium_src-db1156813ca4e0c82a36bb1ded160f00f579b1c6.tar.gz chromium_src-db1156813ca4e0c82a36bb1ded160f00f579b1c6.tar.bz2 |
Reorganize net/disk_cache into backend specific directories.
We want to unlink the blockfile cache on Android, and it seems that
we'll want more platforms with more varieties of backend in the
future. So let's move the backend into its own subdirectory as we
start to untangle the dependencies from tests/etc... into their
respective backends.
This initial checkin isn't perfect; in particular the tests have a lot
of v2 specific dependencies still.
R=rvargas@chromium.org, cbentzel, rvargas
BUG=331062
Review URL: https://codereview.chromium.org/121643003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253581 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/backend_unittest.cc')
-rw-r--r-- | net/disk_cache/backend_unittest.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/disk_cache/backend_unittest.cc b/net/disk_cache/backend_unittest.cc index 8119f85..35fdebc 100644 --- a/net/disk_cache/backend_unittest.cc +++ b/net/disk_cache/backend_unittest.cc @@ -15,20 +15,20 @@ #include "net/base/io_buffer.h" #include "net/base/net_errors.h" #include "net/base/test_completion_callback.h" -#include "net/disk_cache/backend_impl.h" +#include "net/disk_cache/blockfile/backend_impl.h" +#include "net/disk_cache/blockfile/entry_impl.h" +#include "net/disk_cache/blockfile/experiments.h" +#include "net/disk_cache/blockfile/histogram_macros.h" +#include "net/disk_cache/blockfile/mapped_file.h" #include "net/disk_cache/cache_util.h" #include "net/disk_cache/disk_cache_test_base.h" #include "net/disk_cache/disk_cache_test_util.h" -#include "net/disk_cache/entry_impl.h" -#include "net/disk_cache/experiments.h" -#include "net/disk_cache/histogram_macros.h" -#include "net/disk_cache/mapped_file.h" -#include "net/disk_cache/mem_backend_impl.h" +#include "net/disk_cache/memory/mem_backend_impl.h" #include "net/disk_cache/simple/simple_backend_impl.h" #include "net/disk_cache/simple/simple_entry_format.h" #include "net/disk_cache/simple/simple_test_util.h" #include "net/disk_cache/simple/simple_util.h" -#include "net/disk_cache/tracing_cache_backend.h" +#include "net/disk_cache/tracing/tracing_cache_backend.h" #include "testing/gtest/include/gtest/gtest.h" #if defined(OS_WIN) |