| Index: webkit/browser/fileapi/file_system_context.h
|
| diff --git a/webkit/browser/fileapi/file_system_context.h b/webkit/browser/fileapi/file_system_context.h
|
| index 3237783fbb8be7f2c82e42d2cd8e15d23018766c..5be6fb7ff88e1c8a1cd42c2498654b911e414ed8 100644
|
| --- a/webkit/browser/fileapi/file_system_context.h
|
| +++ b/webkit/browser/fileapi/file_system_context.h
|
| @@ -35,11 +35,6 @@ class QuotaManagerProxy;
|
| class SpecialStoragePolicy;
|
| }
|
|
|
| -namespace sync_file_system {
|
| -class LocalFileChangeTracker;
|
| -class LocalFileSyncContext;
|
| -}
|
| -
|
| namespace webkit_blob {
|
| class BlobURLRequestJobTest;
|
| class FileStreamReader;
|
| @@ -209,17 +204,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemContext
|
| return operation_runner_.get();
|
| }
|
|
|
| - sync_file_system::LocalFileChangeTracker* change_tracker() {
|
| - return change_tracker_.get();
|
| - }
|
| - void SetLocalFileChangeTracker(
|
| - scoped_ptr<sync_file_system::LocalFileChangeTracker> tracker);
|
| -
|
| - sync_file_system::LocalFileSyncContext* sync_context() {
|
| - return sync_context_.get();
|
| - }
|
| - void set_sync_context(sync_file_system::LocalFileSyncContext* sync_context);
|
| -
|
| const base::FilePath& partition_path() const { return partition_path_; }
|
|
|
| // Same as |CrackFileSystemURL|, but cracks FileSystemURL created from |url|.
|
| @@ -235,6 +219,8 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemContext
|
| void EnableTemporaryFileSystemInIncognito();
|
| #endif
|
|
|
| + SandboxContext* sandbox_context() const { return sandbox_context_.get(); }
|
| +
|
| private:
|
| typedef std::map<FileSystemType, FileSystemBackend*>
|
| FileSystemBackendMap;
|
| @@ -315,10 +301,6 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemContext
|
| // The base path of the storage partition for this context.
|
| const base::FilePath partition_path_;
|
|
|
| - // For syncable file systems.
|
| - scoped_ptr<sync_file_system::LocalFileChangeTracker> change_tracker_;
|
| - scoped_refptr<sync_file_system::LocalFileSyncContext> sync_context_;
|
| -
|
| scoped_ptr<FileSystemOperationRunner> operation_runner_;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(FileSystemContext);
|
|
|