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

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/api_util.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/api_util.cc
diff --git a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
index 2666654f93d8d93f73981eac542a4950173ba908..a65d2a21e9944ff583b35df988bde2f46e39b6fb 100644
--- a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
+++ b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
@@ -144,7 +144,7 @@ std::string GetMimeTypeFromTitle(const std::string& title) {
bool CreateTemporaryFile(const base::FilePath& dir_path,
webkit_blob::ScopedFile* temp_file) {
base::FilePath temp_file_path;
- const bool success = file_util::CreateDirectory(dir_path) &&
+ const bool success = base::CreateDirectory(dir_path) &&
base::CreateTemporaryFileInDir(dir_path, &temp_file_path);
if (!success)
return success;

Powered by Google App Engine
This is Rietveld 408576698