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

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/api_util.cc

Issue 99923002: Move temp file 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 2dcd6023afe13dd181378b6d10466d998e6154e5..cceba2ec0da83c64646ebc7cb891dc1187ddc696 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
@@ -145,7 +145,7 @@ 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) &&
- file_util::CreateTemporaryFileInDir(dir_path, &temp_file_path);
+ base::CreateTemporaryFileInDir(dir_path, &temp_file_path);
if (!success)
return success;
*temp_file =

Powered by Google App Engine
This is Rietveld 408576698