Chromium Code Reviews| Index: webkit/browser/fileapi/test_mount_point_provider.h |
| =================================================================== |
| --- webkit/browser/fileapi/test_mount_point_provider.h (revision 202646) |
| +++ webkit/browser/fileapi/test_mount_point_provider.h (working copy) |
| @@ -48,9 +48,6 @@ |
| virtual CopyOrMoveFileValidatorFactory* GetCopyOrMoveFileValidatorFactory( |
| FileSystemType type, |
| base::PlatformFileError* error_code) OVERRIDE; |
| - virtual void InitializeCopyOrMoveFileValidatorFactory( |
| - FileSystemType type, |
| - scoped_ptr<CopyOrMoveFileValidatorFactory> factory) OVERRIDE; |
| virtual FilePermissionPolicy GetPermissionPolicy( |
| const FileSystemURL& url, |
| int permissions) const OVERRIDE; |
| @@ -74,6 +71,11 @@ |
| FileSystemContext* context, |
| const DeleteFileSystemCallback& callback) OVERRIDE; |
| + // Initialize the CopyOrMoveFileValidatorFactory. Invalid to call more than |
| + // once. |
| + virtual void InitializeCopyOrMoveFileValidatorFactory( |
| + scoped_ptr<CopyOrMoveFileValidatorFactory> factory); |
|
kinuko
2013/05/29 01:35:21
nit: does this need to be virtual?
Lei Zhang
2013/05/29 01:37:21
Nope, fixed.
|
| + |
| const UpdateObserverList* GetUpdateObservers(FileSystemType type) const; |
| // For CopyOrMoveFileValidatorFactory testing. Once it's set to true |