| 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..efe107c1a9b0386d19b051c0296880d231b164d8
|
| --- /dev/null
|
| +++ b/components/arc/test/fake_file_system_instance.cc
|
| @@ -0,0 +1,23 @@
|
| +// 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() = default;
|
| +
|
| +FakeFileSystemInstance::~FakeFileSystemInstance() = default;
|
| +
|
| +void FakeFileSystemInstance::GetFileSize(const std::string& url,
|
| + const GetFileSizeCallback& callback) {}
|
| +
|
| +void FakeFileSystemInstance::OpenFileToRead(
|
| + const std::string& url,
|
| + const OpenFileToReadCallback& callback) {}
|
| +
|
| +void FakeFileSystemInstance::RequestMediaScan(
|
| + const std::vector<std::string>& paths) {}
|
| +
|
| +} // namespace arc
|
|
|