| 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
|
|
|