| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/unmount.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 protected: | 32 protected: |
| 33 FileSystemProviderOperationsUnmountTest() {} | 33 FileSystemProviderOperationsUnmountTest() {} |
| 34 virtual ~FileSystemProviderOperationsUnmountTest() {} | 34 virtual ~FileSystemProviderOperationsUnmountTest() {} |
| 35 | 35 |
| 36 virtual void SetUp() override { | 36 virtual void SetUp() override { |
| 37 file_system_info_ = | 37 file_system_info_ = |
| 38 ProvidedFileSystemInfo(kExtensionId, | 38 ProvidedFileSystemInfo(kExtensionId, |
| 39 kFileSystemId, | 39 kFileSystemId, |
| 40 "" /* display_name */, | 40 "" /* display_name */, |
| 41 false /* writable */, | 41 false /* writable */, |
| 42 false /* supports_notify_tag */, |
| 42 base::FilePath() /* mount_path */); | 43 base::FilePath() /* mount_path */); |
| 43 } | 44 } |
| 44 | 45 |
| 45 ProvidedFileSystemInfo file_system_info_; | 46 ProvidedFileSystemInfo file_system_info_; |
| 46 }; | 47 }; |
| 47 | 48 |
| 48 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) { | 49 TEST_F(FileSystemProviderOperationsUnmountTest, Execute) { |
| 49 using extensions::api::file_system_provider::UnmountRequestedOptions; | 50 using extensions::api::file_system_provider::UnmountRequestedOptions; |
| 50 | 51 |
| 51 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); | 52 util::LoggingDispatchEventImpl dispatcher(true /* dispatch_reply */); |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 scoped_ptr<RequestValue>(new RequestValue()), | 133 scoped_ptr<RequestValue>(new RequestValue()), |
| 133 base::File::FILE_ERROR_NOT_FOUND); | 134 base::File::FILE_ERROR_NOT_FOUND); |
| 134 ASSERT_EQ(1u, callback_log.size()); | 135 ASSERT_EQ(1u, callback_log.size()); |
| 135 base::File::Error event_result = callback_log[0]; | 136 base::File::Error event_result = callback_log[0]; |
| 136 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); | 137 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, event_result); |
| 137 } | 138 } |
| 138 | 139 |
| 139 } // namespace operations | 140 } // namespace operations |
| 140 } // namespace file_system_provider | 141 } // namespace file_system_provider |
| 141 } // namespace chromeos | 142 } // namespace chromeos |
| OLD | NEW |