| Index: webkit/fileapi/test_mount_point_provider.h
|
| diff --git a/webkit/fileapi/test_mount_point_provider.h b/webkit/fileapi/test_mount_point_provider.h
|
| index 818133339e2ad258072e59e326df8e12f691289a..5716368da690ff7e310c79e3399ed22fe6a03d67 100644
|
| --- a/webkit/fileapi/test_mount_point_provider.h
|
| +++ b/webkit/fileapi/test_mount_point_provider.h
|
| @@ -26,8 +26,8 @@ class FileSystemQuotaUtil;
|
| class FILEAPI_EXPORT_PRIVATE TestMountPointProvider
|
| : public FileSystemMountPointProvider {
|
| public:
|
| - typedef FileSystemMountPointProvider::ValidateFileSystemCallback
|
| - ValidateFileSystemCallback;
|
| + using FileSystemMountPointProvider::ValidateFileSystemCallback;
|
| + using FileSystemMountPointProvider::DeleteFileSystemCallback;
|
|
|
| TestMountPointProvider(
|
| base::SequencedTaskRunner* task_runner,
|
| @@ -56,14 +56,19 @@ class FILEAPI_EXPORT_PRIVATE TestMountPointProvider
|
| const FileSystemURL& url,
|
| FileSystemContext* context) const OVERRIDE;
|
| virtual webkit_blob::FileStreamReader* CreateFileStreamReader(
|
| - const FileSystemURL& url,
|
| - int64 offset,
|
| - FileSystemContext* context) const OVERRIDE;
|
| + const FileSystemURL& url,
|
| + int64 offset,
|
| + FileSystemContext* context) const OVERRIDE;
|
| virtual FileStreamWriter* CreateFileStreamWriter(
|
| - const FileSystemURL& url,
|
| - int64 offset,
|
| - FileSystemContext* context) const OVERRIDE;
|
| + const FileSystemURL& url,
|
| + int64 offset,
|
| + FileSystemContext* context) const OVERRIDE;
|
| virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
|
| + virtual void DeleteFileSystem(
|
| + const GURL& origin_url,
|
| + FileSystemType type,
|
| + FileSystemContext* context,
|
| + const DeleteFileSystemCallback& callback) OVERRIDE;
|
|
|
| private:
|
| FilePath base_path_;
|
|
|