| 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_SANDBOX_MOUNT_POINT_PROVIDER_H_ | 5 #ifndef WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ |
| 6 #define WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ | 6 #define WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 const FilePath& virtual_path, | 85 const FilePath& virtual_path, |
| 86 bool create) OVERRIDE; | 86 bool create) OVERRIDE; |
| 87 virtual bool IsAccessAllowed( | 87 virtual bool IsAccessAllowed( |
| 88 const GURL& origin_url, | 88 const GURL& origin_url, |
| 89 FileSystemType type, | 89 FileSystemType type, |
| 90 const FilePath& virtual_path) OVERRIDE; | 90 const FilePath& virtual_path) OVERRIDE; |
| 91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; | 91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; |
| 92 virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE; | 92 virtual FileSystemFileUtil* GetFileUtil(FileSystemType type) OVERRIDE; |
| 93 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) | 93 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) |
| 94 const OVERRIDE; | 94 const OVERRIDE; |
| 95 virtual FileSystemOperationInterface* CreateFileSystemOperation( | 95 virtual FileSystemOperation* CreateFileSystemOperation( |
| 96 const FileSystemURL& url, | 96 const FileSystemURL& url, |
| 97 FileSystemContext* context) const OVERRIDE; | 97 FileSystemContext* context) const OVERRIDE; |
| 98 virtual webkit_blob::FileStreamReader* CreateFileStreamReader( | 98 virtual webkit_blob::FileStreamReader* CreateFileStreamReader( |
| 99 const FileSystemURL& url, | 99 const FileSystemURL& url, |
| 100 int64 offset, | 100 int64 offset, |
| 101 FileSystemContext* context) const OVERRIDE; | 101 FileSystemContext* context) const OVERRIDE; |
| 102 virtual FileStreamWriter* CreateFileStreamWriter( | 102 virtual FileStreamWriter* CreateFileStreamWriter( |
| 103 const FileSystemURL& url, | 103 const FileSystemURL& url, |
| 104 int64 offset, | 104 int64 offset, |
| 105 FileSystemContext* context) const OVERRIDE; | 105 FileSystemContext* context) const OVERRIDE; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 base::Time next_release_time_for_open_filesystem_stat_; | 200 base::Time next_release_time_for_open_filesystem_stat_; |
| 201 | 201 |
| 202 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_; | 202 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_; |
| 203 | 203 |
| 204 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider); | 204 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider); |
| 205 }; | 205 }; |
| 206 | 206 |
| 207 } // namespace fileapi | 207 } // namespace fileapi |
| 208 | 208 |
| 209 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ | 209 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ |
| OLD | NEW |