| Index: webkit/fileapi/sandboxed_file_system_context.h
|
| diff --git a/webkit/fileapi/sandboxed_file_system_context.h b/webkit/fileapi/sandboxed_file_system_context.h
|
| index fcb90bb4fc2422b140e08bac9054127052be8499..5e16cd983a725d847edf08ca52d2f7107d93c030 100644
|
| --- a/webkit/fileapi/sandboxed_file_system_context.h
|
| +++ b/webkit/fileapi/sandboxed_file_system_context.h
|
| @@ -19,6 +19,7 @@ namespace fileapi {
|
|
|
| class FileSystemPathManager;
|
| class FileSystemQuotaManager;
|
| +class FileSystemUsageTracker;
|
| class SandboxedFileSystemContext;
|
|
|
| struct DefaultContextDeleter;
|
| @@ -47,16 +48,17 @@ class SandboxedFileSystemContext
|
|
|
| FileSystemPathManager* path_manager() { return path_manager_.get(); }
|
| FileSystemQuotaManager* quota_manager() { return quota_manager_.get(); }
|
| + FileSystemUsageTracker* usage_tracker() { return usage_tracker_.get(); }
|
|
|
| private:
|
| friend struct DefaultContextDeleter;
|
| void DeleteOnCorrectThread() const;
|
|
|
| - bool allow_file_access_from_files_;
|
| scoped_refptr<base::MessageLoopProxy> file_message_loop_;
|
| scoped_refptr<base::MessageLoopProxy> io_message_loop_;
|
| scoped_ptr<FileSystemPathManager> path_manager_;
|
| scoped_ptr<FileSystemQuotaManager> quota_manager_;
|
| + scoped_ptr<FileSystemUsageTracker> usage_tracker_;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(SandboxedFileSystemContext);
|
| };
|
|
|