Chromium Code Reviews| 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..c87fe7aeb0b4154d67eb7ba8f2f181c9da608a63 |
| --- /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() {} |
|
Yusuke Sato
2016/11/18 19:21:05
nit: = default;
?
Shuhei Takahashi
2016/11/21 11:06:43
Done.
|
| + |
| +FakeFileSystemInstance::~FakeFileSystemInstance() {} |
|
Yusuke Sato
2016/11/18 19:21:05
same
Shuhei Takahashi
2016/11/21 11:06:43
Done.
|
| + |
| +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 |