Index: content/public/test/test_file_system_backend.h |
diff --git a/content/public/test/test_file_system_backend.h b/content/public/test/test_file_system_backend.h |
index 2c80e62ac7a699af7a2ea4c0535ec13fc6d88f1c..bcea5439276448678fcaf565a4815866d812b58e 100644 |
--- a/content/public/test/test_file_system_backend.h |
+++ b/content/public/test/test_file_system_backend.h |
@@ -41,6 +41,8 @@ class TestFileSystemBackend : public storage::FileSystemBackend { |
const OpenFileSystemCallback& callback) OVERRIDE; |
virtual storage::AsyncFileUtil* GetAsyncFileUtil( |
storage::FileSystemType type) OVERRIDE; |
+ virtual storage::WatcherManager* GetWatcherManager( |
+ storage::FileSystemType type) OVERRIDE; |
virtual storage::CopyOrMoveFileValidatorFactory* |
GetCopyOrMoveFileValidatorFactory(storage::FileSystemType type, |
base::File::Error* error_code) OVERRIDE; |
@@ -85,6 +87,7 @@ class TestFileSystemBackend : public storage::FileSystemBackend { |
base::FilePath base_path_; |
scoped_refptr<base::SequencedTaskRunner> task_runner_; |
scoped_ptr<storage::AsyncFileUtilAdapter> file_util_; |
+ scoped_ptr<storage::WatcherManager> watcher_manager_; |
scoped_ptr<QuotaUtil> quota_util_; |
bool require_copy_or_move_validator_; |