OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 virtual ~FileSystemMountPointProvider() {} | 22 virtual ~FileSystemMountPointProvider() {} |
23 | 23 |
24 // Checks if access to |virtual_path| is allowed from |origin_url|. | 24 // Checks if access to |virtual_path| is allowed from |origin_url|. |
25 virtual bool IsAccessAllowed(const GURL& origin_url, | 25 virtual bool IsAccessAllowed(const GURL& origin_url, |
26 FileSystemType type, | 26 FileSystemType type, |
27 const FilePath& virtual_path) = 0; | 27 const FilePath& virtual_path) = 0; |
28 | 28 |
29 // Retrieves the root path for the given |origin_url| and |type|, and | 29 // Retrieves the root path for the given |origin_url| and |type|, and |
30 // calls the given |callback| with the root path and name. | 30 // calls the given |callback| with the root path and name. |
31 // If |create| is true this also creates the directory if it doesn't exist. | 31 // If |create| is true this also creates the directory if it doesn't exist. |
32 virtual void GetFileSystemRootPath( | 32 virtual void ValidateFileSystemRootAndGetURL( |
33 const GURL& origin_url, | 33 const GURL& origin_url, |
34 FileSystemType type, | 34 FileSystemType type, |
35 bool create, | 35 bool create, |
36 FileSystemPathManager::GetRootPathCallback* callback) = 0; | 36 FileSystemPathManager::GetRootPathCallback* callback) = 0; |
37 | 37 |
38 // Like GetFileSystemRootPath, but synchronous, and can be called only while | 38 // Like GetFileSystemRootPath, but synchronous, and can be called only while |
39 // running on the file thread. | 39 // running on the file thread. |
40 virtual FilePath GetFileSystemRootPathOnFileThread( | 40 virtual FilePath ValidateFileSystemRootAndGetPathOnFileThread( |
41 const GURL& origin_url, | 41 const GURL& origin_url, |
42 FileSystemType type, | 42 FileSystemType type, |
43 const FilePath& virtual_path, | 43 const FilePath& virtual_path, |
44 bool create) = 0; | 44 bool create) = 0; |
45 | 45 |
46 // Checks if a given |name| contains any restricted names/chars in it. | 46 // Checks if a given |name| contains any restricted names/chars in it. |
47 // Callable on any thread. | 47 // Callable on any thread. |
48 virtual bool IsRestrictedFileName(const FilePath& filename) const = 0; | 48 virtual bool IsRestrictedFileName(const FilePath& filename) const = 0; |
49 | 49 |
50 // Returns the list of top level directories that are exposed by this | 50 // Returns the list of top level directories that are exposed by this |
51 // provider. This list is used to set appropriate child process file access | 51 // provider. This list is used to set appropriate child process file access |
52 // permissions. | 52 // permissions. |
53 virtual std::vector<FilePath> GetRootDirectories() const = 0; | 53 virtual std::vector<FilePath> GetRootDirectories() const = 0; |
54 }; | 54 }; |
55 | 55 |
56 // An interface to control external file system access permissions. | 56 // An interface to control external file system access permissions. |
57 class ExternalFileSystemMountPointProvider | 57 class ExternalFileSystemMountPointProvider |
58 : public FileSystemMountPointProvider { | 58 : public FileSystemMountPointProvider { |
59 public: | 59 public: |
60 // Grant access to all external file system from extension identified with | 60 // Grant access to all external file system from extension identified with |
61 // |extension_id|. | 61 // |extension_id|. |
62 virtual void GrantFullAccessToExtension(const std::string& extension_id) = 0; | 62 virtual void GrantFullAccessToExtension(const std::string& extension_id) = 0; |
63 // Grants access to |virtual_path| from |origin_url|. | 63 // Grants access to |virtual_path| from |origin_url|. |
64 virtual void GrantFileAccessToExtension( | 64 virtual void GrantFileAccessToExtension( |
65 const std::string& extension_id, | 65 const std::string& extension_id, |
66 const FilePath& virtual_path) = 0; | 66 const FilePath& virtual_path) = 0; |
67 // Revoke file access from extension identified with |extension_id|. | 67 // Revoke file access from extension identified with |extension_id|. |
68 virtual void RevokeAccessForExtension( | 68 virtual void RevokeAccessForExtension( |
69 const std::string& extension_id) = 0; | 69 const std::string& extension_id) = 0; |
| 70 // Adds a new mount point. |
| 71 virtual void AddMountPoint(FilePath mount_point) = 0; |
| 72 // Remove a mount point. |
| 73 virtual void RemoveMountPoint(FilePath mount_point) = 0; |
70 }; | 74 }; |
71 | 75 |
72 } // namespace fileapi | 76 } // namespace fileapi |
73 | 77 |
74 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ | 78 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_ |
75 | 79 |
OLD | NEW |