summaryrefslogtreecommitdiffstats
path: root/webkit/browser/fileapi/copy_or_move_operation_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/browser/fileapi/copy_or_move_operation_delegate.h')
-rw-r--r--webkit/browser/fileapi/copy_or_move_operation_delegate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/browser/fileapi/copy_or_move_operation_delegate.h b/webkit/browser/fileapi/copy_or_move_operation_delegate.h
index 77d1a76..1f82a34a 100644
--- a/webkit/browser/fileapi/copy_or_move_operation_delegate.h
+++ b/webkit/browser/fileapi/copy_or_move_operation_delegate.h
@@ -25,6 +25,7 @@ class CopyOrMoveOperationDelegate
public:
class CopyOrMoveImpl;
typedef FileSystemOperation::CopyProgressCallback CopyProgressCallback;
+ typedef FileSystemOperation::CopyOrMoveOption CopyOrMoveOption;
enum OperationType {
OPERATION_COPY,
@@ -36,6 +37,7 @@ class CopyOrMoveOperationDelegate
const FileSystemURL& src_root,
const FileSystemURL& dest_root,
OperationType operation_type,
+ CopyOrMoveOption option,
const CopyProgressCallback& progress_callback,
const StatusCallback& callback);
virtual ~CopyOrMoveOperationDelegate();
@@ -75,6 +77,7 @@ class CopyOrMoveOperationDelegate
FileSystemURL dest_root_;
bool same_file_system_;
OperationType operation_type_;
+ CopyOrMoveOption option_;
CopyProgressCallback progress_callback_;
StatusCallback callback_;