| Index: webrtc/base/fileutils_mock.h
|
| diff --git a/webrtc/base/fileutils_mock.h b/webrtc/base/fileutils_mock.h
|
| index 428d444e1242a7d56d2d6e5d17583a181acd383f..7ce41fa0471a51859abc847b355b7c79ad7f8849 100644
|
| --- a/webrtc/base/fileutils_mock.h
|
| +++ b/webrtc/base/fileutils_mock.h
|
| @@ -150,10 +150,6 @@ class FakeFileSystem : public FilesystemInterface {
|
| return NULL;
|
| }
|
|
|
| - bool CreatePrivateFile(const Pathname &filename) {
|
| - EXPECT_TRUE(false) << "Unsupported operation";
|
| - return false;
|
| - }
|
| bool DeleteFile(const Pathname &filename) {
|
| EXPECT_TRUE(false) << "Unsupported operation";
|
| return false;
|
| @@ -174,10 +170,6 @@ class FakeFileSystem : public FilesystemInterface {
|
| EXPECT_TRUE(false) << "Unsupported operation";
|
| return false;
|
| }
|
| - bool MoveFolder(const Pathname &old_path, const Pathname &new_path) {
|
| - EXPECT_TRUE(false) << "Unsupported operation";
|
| - return false;
|
| - }
|
| bool MoveFile(const Pathname &old_path, const Pathname &new_path) {
|
| EXPECT_TRUE(false) << "Unsupported operation";
|
| return false;
|
| @@ -220,10 +212,6 @@ class FakeFileSystem : public FilesystemInterface {
|
| EXPECT_TRUE(false) << "Unsupported operation";
|
| return false;
|
| }
|
| - bool GetAppPathname(Pathname *path) {
|
| - EXPECT_TRUE(false) << "Unsupported operation";
|
| - return false;
|
| - }
|
| bool GetAppDataFolder(Pathname *path, bool per_user) {
|
| EXPECT_TRUE(per_user) << "Unsupported operation";
|
| #if defined(WEBRTC_WIN)
|
| @@ -241,11 +229,8 @@ class FakeFileSystem : public FilesystemInterface {
|
| EXPECT_TRUE(false) << "Unsupported operation";
|
| return false;
|
| }
|
| - Pathname GetCurrentDirectory() {
|
| - return Pathname();
|
| - }
|
|
|
| - private:
|
| + private:
|
| const std::vector<File> all_files_;
|
| };
|
| } // namespace rtc
|
|
|