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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_context.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/local/local_file_sync_context.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_context.cc b/chrome/browser/sync_file_system/local/local_file_sync_context.cc
index 59eede488c616576d48886c9daab224c6aec524a..840f59ceff59b0a8054e25877894a1a0f31df387 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_context.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_context.cc
@@ -793,8 +793,8 @@ void LocalFileSyncContext::DidGetWritingStatusForSync(
webkit_blob::ScopedFile snapshot;
if (file_error == base::PLATFORM_FILE_OK && sync_mode == SYNC_SNAPSHOT) {
base::FilePath snapshot_path;
- file_util::CreateTemporaryFileInDir(local_base_path_.Append(kSnapshotDir),
- &snapshot_path);
+ base::CreateTemporaryFileInDir(local_base_path_.Append(kSnapshotDir),
+ &snapshot_path);
if (base::CopyFile(platform_path, snapshot_path)) {
platform_path = snapshot_path;
snapshot = webkit_blob::ScopedFile(

Powered by Google App Engine
This is Rietveld 408576698