summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-09 17:42:26 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-09 17:42:26 +0000
commitf0ff2ad2c5bcf8e206baf27dbfaeef7743fd6c0d (patch)
treef16870d528455ef5acb84e180e6e07afb308ee6f /net
parent456f3b4c2d9942fd86e7c374426d37f029542a9a (diff)
downloadchromium_src-f0ff2ad2c5bcf8e206baf27dbfaeef7743fd6c0d.zip
chromium_src-f0ff2ad2c5bcf8e206baf27dbfaeef7743fd6c0d.tar.gz
chromium_src-f0ff2ad2c5bcf8e206baf27dbfaeef7743fd6c0d.tar.bz2
Move Copy* into the base namespace.
This also creates a new base::internal namespace in file_util and I moved some of the internal functions in file_util to there. BUG= TBR=jam Review URL: https://codereview.chromium.org/18332014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210600 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/disk_cache/disk_cache_test_base.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/disk_cache_test_base.cc b/net/disk_cache/disk_cache_test_base.cc
index d6688bb..5ab7147 100644
--- a/net/disk_cache/disk_cache_test_base.cc
+++ b/net/disk_cache/disk_cache_test_base.cc
@@ -37,7 +37,7 @@ bool DiskCacheTest::CopyTestCache(const std::string& name) {
if (!CleanupCacheDir())
return false;
- return file_util::CopyDirectory(path, cache_path_, false);
+ return base::CopyDirectory(path, cache_path_, false);
}
bool DiskCacheTest::CleanupCacheDir() {