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

Unified Diff: components/arc/test/fake_file_system_instance.cc

Issue 2714433003: mediaview: IPC definitions to watch for document changes. (Closed)
Patch Set: Add more fool-proof comment as per hidehiko's request in another CL. Created 3 years, 10 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
« no previous file with comments | « components/arc/test/fake_file_system_instance.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/test/fake_file_system_instance.cc
diff --git a/components/arc/test/fake_file_system_instance.cc b/components/arc/test/fake_file_system_instance.cc
index 040500df26b8c79119a2294826b8fabaacbc925c..9e75360c753c7aaf78a6ffe1e5b8b28ac14ecb66 100644
--- a/components/arc/test/fake_file_system_instance.cc
+++ b/components/arc/test/fake_file_system_instance.cc
@@ -115,6 +115,13 @@ void FakeFileSystemInstance::AddDocument(const Document& document) {
}
}
+void FakeFileSystemInstance::AddWatcher(const std::string& authority,
+ const std::string& document_id,
+ const AddWatcherCallback& callback) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ NOTIMPLEMENTED();
+}
+
void FakeFileSystemInstance::GetFileSize(const std::string& url,
const GetFileSizeCallback& callback) {
DCHECK(thread_checker_.CalledOnValidThread());
@@ -194,6 +201,18 @@ void FakeFileSystemInstance::GetChildDocuments(
base::Passed(base::make_optional(std::move(children)))));
}
+void FakeFileSystemInstance::Init(mojom::FileSystemHostPtr host) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ NOTIMPLEMENTED();
+}
+
+void FakeFileSystemInstance::RemoveWatcher(
+ int64_t watcher_id,
+ const RemoveWatcherCallback& callback) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ NOTIMPLEMENTED();
+}
+
void FakeFileSystemInstance::RequestMediaScan(
const std::vector<std::string>& paths) {
DCHECK(thread_checker_.CalledOnValidThread());
« no previous file with comments | « components/arc/test/fake_file_system_instance.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698