| Index: content/browser/fileapi/fileapi_message_filter.cc
|
| diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
|
| index e1ac003465e8856647b0ebe31e3c59dd4aae366b..9fff394337c9cdd55efd2bb3e0f67008bb603895 100644
|
| --- a/content/browser/fileapi/fileapi_message_filter.cc
|
| +++ b/content/browser/fileapi/fileapi_message_filter.cc
|
| @@ -236,7 +236,7 @@ void FileAPIMessageFilter::OnMove(
|
| return;
|
| }
|
|
|
| - FileSystemOperation* operation = GetNewOperation(src_url, request_id);
|
| + FileSystemOperation* operation = GetNewOperation(dest_url, request_id);
|
| if (!operation)
|
| return;
|
| operation->Move(
|
| @@ -256,7 +256,7 @@ void FileAPIMessageFilter::OnCopy(
|
| return;
|
| }
|
|
|
| - FileSystemOperation* operation = GetNewOperation(src_url, request_id);
|
| + FileSystemOperation* operation = GetNewOperation(dest_url, request_id);
|
| if (!operation)
|
| return;
|
| operation->Copy(
|
|
|