Index: webkit/fileapi/copy_or_move_file_validator.h |
diff --git a/webkit/fileapi/copy_or_move_file_validator.h b/webkit/fileapi/copy_or_move_file_validator.h |
index 507a2766d12a4fd111924e6efcfe0bc852fae371..a3e4a42a468084873366365fef707942a37ecabe 100644 |
--- a/webkit/fileapi/copy_or_move_file_validator.h |
+++ b/webkit/fileapi/copy_or_move_file_validator.h |
@@ -26,8 +26,11 @@ class CopyOrMoveFileValidatorFactory { |
public: |
virtual ~CopyOrMoveFileValidatorFactory() {} |
- // This method must always return a non-NULL validator. |
+ // This method must always return a non-NULL validator. |src_url| is needed |
+ // in addition to |platform_path| because in the obfuscated file system |
+ // case, |platform_path| will be an obfuscated filename and extension. |
virtual CopyOrMoveFileValidator* CreateCopyOrMoveFileValidator( |
+ const FileSystemURL& src_url, |
const base::FilePath& platform_path) = 0; |
}; |