Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: chrome/browser/chromeos/drive/file_cache_unittest.cc

Issue 100573002: Move directory creation functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/drive/file_cache.cc ('k') | chrome/browser/chromeos/drive/file_system_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/file_cache_unittest.cc
diff --git a/chrome/browser/chromeos/drive/file_cache_unittest.cc b/chrome/browser/chromeos/drive/file_cache_unittest.cc
index dd16cf46dc7e5161cf639a758bf2c7ad275c6642..41edfaa9591a218296d4a625f4b16c59e0795a94 100644
--- a/chrome/browser/chromeos/drive/file_cache_unittest.cc
+++ b/chrome/browser/chromeos/drive/file_cache_unittest.cc
@@ -55,8 +55,8 @@ class FileCacheTestOnUIThread : public testing::Test {
const base::FilePath cache_dir =
temp_dir_.path().AppendASCII(kCacheFileDirectory);
- ASSERT_TRUE(file_util::CreateDirectory(metadata_dir));
- ASSERT_TRUE(file_util::CreateDirectory(cache_dir));
+ ASSERT_TRUE(base::CreateDirectory(metadata_dir));
+ ASSERT_TRUE(base::CreateDirectory(cache_dir));
ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(),
&dummy_file_path_));
@@ -720,8 +720,8 @@ class FileCacheTest : public testing::Test {
const base::FilePath metadata_dir = temp_dir_.path().AppendASCII("meta");
cache_files_dir_ = temp_dir_.path().AppendASCII(kCacheFileDirectory);
- ASSERT_TRUE(file_util::CreateDirectory(metadata_dir));
- ASSERT_TRUE(file_util::CreateDirectory(cache_files_dir_));
+ ASSERT_TRUE(base::CreateDirectory(metadata_dir));
+ ASSERT_TRUE(base::CreateDirectory(cache_files_dir_));
fake_free_disk_space_getter_.reset(new FakeFreeDiskSpaceGetter);
« no previous file with comments | « chrome/browser/chromeos/drive/file_cache.cc ('k') | chrome/browser/chromeos/drive/file_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698