summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_file_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/file_system_file_util.cc')
-rw-r--r--webkit/fileapi/file_system_file_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/fileapi/file_system_file_util.cc b/webkit/fileapi/file_system_file_util.cc
index 32b00d4..a8b5e66 100644
--- a/webkit/fileapi/file_system_file_util.cc
+++ b/webkit/fileapi/file_system_file_util.cc
@@ -189,11 +189,11 @@ PlatformFileError FileSystemFileUtil::CopyOrMoveFile(
PlatformFileError FileSystemFileUtil::CopyInForeignFile(
FileSystemOperationContext* context,
- const FileSystemPath& underlying_src_path,
+ const FilePath& src_file_path,
const FileSystemPath& dest_path) {
if (underlying_file_util_.get()) {
return underlying_file_util_->CopyInForeignFile(
- context, underlying_src_path, dest_path);
+ context, src_file_path, dest_path);
}
NOTREACHED() << "Subclasses must provide implementation if they have no"
<< "underlying_file_util";