OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "webkit/fileapi/file_system_mount_point_provider.h" | 11 #include "webkit/fileapi/file_system_mount_point_provider.h" |
12 | 12 |
13 namespace fileapi { | 13 namespace fileapi { |
14 | 14 |
15 class DraggedFileUtil; | 15 class DraggedFileUtil; |
16 class IsolatedContext; | 16 class IsolatedContext; |
17 class IsolatedFileUtil; | 17 class IsolatedFileUtil; |
18 | 18 |
19 class IsolatedMountPointProvider : public FileSystemMountPointProvider { | 19 class IsolatedMountPointProvider : public FileSystemMountPointProvider { |
20 public: | 20 public: |
21 typedef FileSystemMountPointProvider::ValidateFileSystemCallback | 21 using FileSystemMountPointProvider::ValidateFileSystemCallback; |
22 ValidateFileSystemCallback; | 22 using FileSystemMountPointProvider::DeleteFileSystemCallback; |
23 | 23 |
24 IsolatedMountPointProvider(); | 24 IsolatedMountPointProvider(); |
25 virtual ~IsolatedMountPointProvider(); | 25 virtual ~IsolatedMountPointProvider(); |
26 | 26 |
27 // FileSystemMountPointProvider implementation. | 27 // FileSystemMountPointProvider implementation. |
28 virtual void ValidateFileSystemRoot( | 28 virtual void ValidateFileSystemRoot( |
29 const GURL& origin_url, | 29 const GURL& origin_url, |
30 FileSystemType type, | 30 FileSystemType type, |
31 bool create, | 31 bool create, |
32 const ValidateFileSystemCallback& callback) OVERRIDE; | 32 const ValidateFileSystemCallback& callback) OVERRIDE; |
33 virtual FilePath GetFileSystemRootPathOnFileThread( | 33 virtual FilePath GetFileSystemRootPathOnFileThread( |
34 const GURL& origin_url, | 34 const GURL& origin_url, |
35 FileSystemType type, | 35 FileSystemType type, |
36 const FilePath& virtual_path, | 36 const FilePath& virtual_path, |
37 bool create) OVERRIDE; | 37 bool create) OVERRIDE; |
38 virtual bool IsAccessAllowed(const GURL& origin_url, | 38 virtual bool IsAccessAllowed(const GURL& origin_url, |
39 FileSystemType type, | 39 FileSystemType type, |
40 const FilePath& virtual_path) OVERRIDE; | 40 const FilePath& virtual_path) OVERRIDE; |
41 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; | 41 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; |
42 virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE; | 42 virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE; |
43 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) | 43 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) |
44 const OVERRIDE; | 44 const OVERRIDE; |
45 virtual FileSystemOperationInterface* CreateFileSystemOperation( | 45 virtual FileSystemOperationInterface* CreateFileSystemOperation( |
46 const FileSystemURL& url, | 46 const FileSystemURL& url, |
47 FileSystemContext* context) const OVERRIDE; | 47 FileSystemContext* context) const OVERRIDE; |
48 virtual webkit_blob::FileStreamReader* CreateFileStreamReader( | 48 virtual webkit_blob::FileStreamReader* CreateFileStreamReader( |
49 const FileSystemURL& url, | 49 const FileSystemURL& url, |
50 int64 offset, | 50 int64 offset, |
51 FileSystemContext* context) const OVERRIDE; | 51 FileSystemContext* context) const OVERRIDE; |
52 virtual FileStreamWriter* CreateFileStreamWriter( | 52 virtual FileStreamWriter* CreateFileStreamWriter( |
53 const FileSystemURL& url, | 53 const FileSystemURL& url, |
54 int64 offset, | 54 int64 offset, |
55 FileSystemContext* context) const OVERRIDE; | 55 FileSystemContext* context) const OVERRIDE; |
56 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; | 56 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; |
| 57 virtual void DeleteFileSystem( |
| 58 const GURL& origin_url, |
| 59 FileSystemType type, |
| 60 FileSystemContext* context, |
| 61 const DeleteFileSystemCallback& callback) OVERRIDE; |
57 | 62 |
58 private: | 63 private: |
59 scoped_ptr<IsolatedFileUtil> isolated_file_util_; | 64 scoped_ptr<IsolatedFileUtil> isolated_file_util_; |
60 scoped_ptr<DraggedFileUtil> dragged_file_util_; | 65 scoped_ptr<DraggedFileUtil> dragged_file_util_; |
61 }; | 66 }; |
62 | 67 |
63 } // namespace fileapi | 68 } // namespace fileapi |
64 | 69 |
65 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ | 70 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ |
OLD | NEW |