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

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

Issue 2511973003: Use ArcFileSystemInstance to access files on ARC. (Closed)
Patch Set: Created 4 years, 1 month 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: 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
new file mode 100644
index 0000000000000000000000000000000000000000..369fbe5320580d78a7b9059c5e496c1300c23a1b
--- /dev/null
+++ b/components/arc/test/fake_file_system_instance.cc
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/arc/test/fake_file_system_instance.h"
+
+namespace arc {
+
+FakeFileSystemInstance::FakeFileSystemInstance() {}
+
+FakeFileSystemInstance::~FakeFileSystemInstance() {}
+
+void FakeFileSystemInstance::GetFileSize(const mojo::String& url,
+ const GetFileSizeCallback& callback) {}
+
+void FakeFileSystemInstance::OpenFileToRead(
+ const mojo::String& url,
+ const OpenFileToReadCallback& callback) {}
+
+void RequestMediaScan(mojo::Array<mojom::String> paths) {}
+
+} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698