| 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_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ |
| 6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace sync_file_system { | 34 namespace sync_file_system { |
| 35 class CannedSyncableFileSystem; | 35 class CannedSyncableFileSystem; |
| 36 class SyncableFileSystemOperation; | 36 class SyncableFileSystemOperation; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace fileapi { | 39 namespace fileapi { |
| 40 | 40 |
| 41 class FileSystemUsageCache; | 41 class FileSystemUsageCache; |
| 42 class LocalFileSystemOperation; | |
| 43 class ObfuscatedFileUtil; | 42 class ObfuscatedFileUtil; |
| 44 class SandboxContext; | 43 class SandboxContext; |
| 45 class SandboxQuotaObserver; | 44 class SandboxQuotaObserver; |
| 46 | 45 |
| 47 // An interface to construct or crack sandboxed filesystem paths for | 46 // An interface to construct or crack sandboxed filesystem paths for |
| 48 // TEMPORARY or PERSISTENT filesystems, which are placed under the user's | 47 // TEMPORARY or PERSISTENT filesystems, which are placed under the user's |
| 49 // profile directory in a sandboxed way. | 48 // profile directory in a sandboxed way. |
| 50 // This interface also lets one enumerate and remove storage for the origins | 49 // This interface also lets one enumerate and remove storage for the origins |
| 51 // that use the filesystem. | 50 // that use the filesystem. |
| 52 class WEBKIT_STORAGE_BROWSER_EXPORT SandboxFileSystemBackend | 51 class WEBKIT_STORAGE_BROWSER_EXPORT SandboxFileSystemBackend |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 std::set<std::pair<GURL, FileSystemType> > sticky_dirty_origins_; | 222 std::set<std::pair<GURL, FileSystemType> > sticky_dirty_origins_; |
| 224 | 223 |
| 225 base::WeakPtrFactory<SandboxFileSystemBackend> weak_factory_; | 224 base::WeakPtrFactory<SandboxFileSystemBackend> weak_factory_; |
| 226 | 225 |
| 227 DISALLOW_COPY_AND_ASSIGN(SandboxFileSystemBackend); | 226 DISALLOW_COPY_AND_ASSIGN(SandboxFileSystemBackend); |
| 228 }; | 227 }; |
| 229 | 228 |
| 230 } // namespace fileapi | 229 } // namespace fileapi |
| 231 | 230 |
| 232 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ | 231 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_FILE_SYSTEM_BACKEND_H_ |
| OLD | NEW |