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; |