summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_util_helper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/file_util_helper.cc')
-rw-r--r--webkit/fileapi/file_util_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/fileapi/file_util_helper.cc b/webkit/fileapi/file_util_helper.cc
index 6914cea..2f7b780 100644
--- a/webkit/fileapi/file_util_helper.cc
+++ b/webkit/fileapi/file_util_helper.cc
@@ -227,7 +227,7 @@ PlatformFileError CrossFileUtilHelper::CopyOrMoveFile(
// Call CopyInForeignFile() on the dest_util_ with the resolved source path
// to perform limited cross-FileSystemFileUtil copy/move.
error = dest_util_->CopyInForeignFile(
- context_, src_path.WithInternalPath(platform_file_path), dest_path);
+ context_, platform_file_path, dest_path);
if (operation_ == OPERATION_COPY || error != base::PLATFORM_FILE_OK)
return error;