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

Unified Diff: chrome/browser/chromeos/drive/file_system/create_file_operation.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/chromeos/drive/file_system/create_file_operation.cc
diff --git a/chrome/browser/chromeos/drive/file_system/create_file_operation.cc b/chrome/browser/chromeos/drive/file_system/create_file_operation.cc
index 67cc830a546cfd7891e85598758c5152ad60b10c..cb4c8dc3db55a67342d71e8a685704067b072d39 100644
--- a/chrome/browser/chromeos/drive/file_system/create_file_operation.cc
+++ b/chrome/browser/chromeos/drive/file_system/create_file_operation.cc
@@ -114,7 +114,7 @@ FileError UpdateLocalStateForCreateFile(
// Here, failure is not a fatal error, so ignore the returned code.
FileError cache_store_error = FILE_ERROR_FAILED;
base::FilePath empty_file;
- if (file_util::CreateTemporaryFile(&empty_file)) {
+ if (base::CreateTemporaryFile(&empty_file)) {
cache_store_error = cache->Store(
local_id,
entry.file_specific_info().md5(),
« no previous file with comments | « chrome/browser/chromeos/drive/file_cache_unittest.cc ('k') | chrome/browser/chromeos/drive/file_system/download_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698