| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; | 91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; |
| 92 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE; | 92 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE; |
| 93 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE; | 93 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE; |
| 94 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) | 94 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) |
| 95 const OVERRIDE; | 95 const OVERRIDE; |
| 96 virtual FileSystemOperationInterface* CreateFileSystemOperation( | 96 virtual FileSystemOperationInterface* CreateFileSystemOperation( |
| 97 const GURL& origin_url, | 97 const GURL& origin_url, |
| 98 FileSystemType file_system_type, | 98 FileSystemType file_system_type, |
| 99 const FilePath& virtual_path, | 99 const FilePath& virtual_path, |
| 100 FileSystemContext* context) const OVERRIDE; | 100 FileSystemContext* context) const OVERRIDE; |
| 101 virtual webkit_blob::FileReader* CreateFileReader( | 101 virtual webkit_blob::FileStreamReader* CreateFileStreamReader( |
| 102 const GURL& url, | 102 const GURL& url, |
| 103 int64 offset, | 103 int64 offset, |
| 104 FileSystemContext* context) const OVERRIDE; | 104 FileSystemContext* context) const OVERRIDE; |
| 105 virtual FileWriter* CreateFileWriter( | 105 virtual FileWriter* CreateFileWriter( |
| 106 const GURL& url, | 106 const GURL& url, |
| 107 int64 offset, | 107 int64 offset, |
| 108 FileSystemContext* context) const OVERRIDE; | 108 FileSystemContext* context) const OVERRIDE; |
| 109 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; | 109 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; |
| 110 | 110 |
| 111 FilePath old_base_path() const; | 111 FilePath old_base_path() const; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 base::Time next_release_time_for_open_filesystem_stat_; | 198 base::Time next_release_time_for_open_filesystem_stat_; |
| 199 | 199 |
| 200 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_; | 200 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_; |
| 201 | 201 |
| 202 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider); | 202 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider); |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 } // namespace fileapi | 205 } // namespace fileapi |
| 206 | 206 |
| 207 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ | 207 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ |
| OLD | NEW |