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

Unified Diff: chrome/browser/sync_file_system/drive_backend/drive_backend_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/drive_backend_util.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
index c8355bde960419bff2b366a5b2074673828f49c8..6b95a925f27efc9cd57ec5d268053a9405edca9f 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_backend_util.cc
@@ -127,7 +127,7 @@ scoped_ptr<FileMetadata> CreateDeletedFileMetadata(
webkit_blob::ScopedFile CreateTemporaryFile(
base::TaskRunner* file_task_runner) {
base::FilePath temp_file_path;
- if (!file_util::CreateTemporaryFile(&temp_file_path))
+ if (!base::CreateTemporaryFile(&temp_file_path))
return webkit_blob::ScopedFile();
return webkit_blob::ScopedFile(

Powered by Google App Engine
This is Rietveld 408576698