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

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: Addressed comments. 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 1b0c76bc365cac71fa26c393530c3c939b81a1a0..bf683f997552f66353f309f3561c6f9674840c62 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 fileapi::FileSystemBackend {
const OpenFileSystemCallback& callback) OVERRIDE;
virtual fileapi::AsyncFileUtil* GetAsyncFileUtil(
fileapi::FileSystemType type) OVERRIDE;
+ virtual fileapi::WatcherManager* GetWatcherManager(
+ fileapi::FileSystemType type) OVERRIDE;
virtual fileapi::CopyOrMoveFileValidatorFactory*
GetCopyOrMoveFileValidatorFactory(
fileapi::FileSystemType type,
@@ -84,6 +86,7 @@ class TestFileSystemBackend : public fileapi::FileSystemBackend {
base::FilePath base_path_;
scoped_refptr<base::SequencedTaskRunner> task_runner_;
scoped_ptr<fileapi::AsyncFileUtilAdapter> file_util_;
+ scoped_ptr<fileapi::WatcherManager> watcher_manager_;
scoped_ptr<QuotaUtil> quota_util_;
bool require_copy_or_move_validator_;

Powered by Google App Engine
This is Rietveld 408576698