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

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.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
Index: chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.cc
diff --git a/chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.cc b/chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.cc
index 0f93d9b8c0455b4546531a771f125d582c19a7d9..4b71b3a4d5d3d69986263285a52960e61d7aae23 100644
--- a/chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.cc
+++ b/chrome/browser/sync_file_system/drive_backend_v1/fake_drive_service_helper.cc
@@ -279,7 +279,7 @@ GDataErrorCode FakeDriveServiceHelper::CompleteListing(
void FakeDriveServiceHelper::Initialize() {
ASSERT_TRUE(base_dir_.CreateUniqueTempDir());
temp_dir_ = base_dir_.path().Append(FPL("tmp"));
- ASSERT_TRUE(file_util::CreateDirectory(temp_dir_));
+ ASSERT_TRUE(base::CreateDirectory(temp_dir_));
}
base::FilePath FakeDriveServiceHelper::WriteToTempFile(

Powered by Google App Engine
This is Rietveld 408576698