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