Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: content/public/test/test_file_system_backend.h

Issue 452043003: [ew] Add basic classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing files. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698