Index: chrome/browser/sync_file_system/local/syncable_file_system_operation.cc |
diff --git a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc |
index d751a56fa706f072c9932411be9e567c05250f89..9784f4ace16402f99ea76a1f41e142fa22ae6d10 100644 |
--- a/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc |
+++ b/chrome/browser/sync_file_system/local/syncable_file_system_operation.cc |
@@ -118,6 +118,7 @@ void SyncableFileSystemOperation::Copy( |
const FileSystemURL& src_url, |
const FileSystemURL& dest_url, |
CopyOrMoveOption option, |
+ const ErrorBehavior error_behavior, |
const CopyProgressCallback& progress_callback, |
const StatusCallback& callback) { |
DCHECK(CalledOnValidThread()); |
@@ -130,9 +131,8 @@ void SyncableFileSystemOperation::Copy( |
completion_callback_ = callback; |
scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask( |
weak_factory_.GetWeakPtr(), |
- base::Bind(&FileSystemOperation::Copy, |
- base::Unretained(impl_.get()), |
- src_url, dest_url, option, progress_callback, |
+ base::Bind(&FileSystemOperation::Copy, base::Unretained(impl_.get()), |
+ src_url, dest_url, option, error_behavior, progress_callback, |
base::Bind(&self::DidFinish, weak_factory_.GetWeakPtr())))); |
operation_runner_->PostOperationTask(task.Pass()); |
} |