| Index: webkit/fileapi/cross_operation_delegate.cc
|
| diff --git a/webkit/fileapi/cross_operation_delegate.cc b/webkit/fileapi/cross_operation_delegate.cc
|
| index 86868e24b62d81e6ebb8aa944abc714025ab6253..28bd6da77703fe50e8409509a772872baf4d75ae 100644
|
| --- a/webkit/fileapi/cross_operation_delegate.cc
|
| +++ b/webkit/fileapi/cross_operation_delegate.cc
|
| @@ -169,7 +169,7 @@ void CrossOperationDelegate::DidCreateSnapshot(
|
| const StatusCallback& callback,
|
| base::PlatformFileError error,
|
| const base::PlatformFileInfo& file_info,
|
| - const FilePath& platform_path,
|
| + const base::FilePath& platform_path,
|
| const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
|
| if (error != base::PLATFORM_FILE_OK) {
|
| callback.Run(error);
|
| @@ -222,7 +222,7 @@ FileSystemURL CrossOperationDelegate::CreateDestURL(
|
| DCHECK_EQ(src_root_.type(), src_url.type());
|
| DCHECK_EQ(src_root_.origin(), src_url.origin());
|
|
|
| - FilePath path = dest_root_.path();
|
| + base::FilePath path = dest_root_.path();
|
| src_root_.path().AppendRelativePath(src_url.path(), &path);
|
| return dest_root_.WithPath(path);
|
| }
|
|
|