| 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/close_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/close_file.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 17 matching lines...) Expand all Loading... |
| 28 const int kRequestId = 2; | 28 const int kRequestId = 2; |
| 29 const int kOpenRequestId = 3; | 29 const int kOpenRequestId = 3; |
| 30 | 30 |
| 31 } // namespace | 31 } // namespace |
| 32 | 32 |
| 33 class FileSystemProviderOperationsCloseFileTest : public testing::Test { | 33 class FileSystemProviderOperationsCloseFileTest : public testing::Test { |
| 34 protected: | 34 protected: |
| 35 FileSystemProviderOperationsCloseFileTest() {} | 35 FileSystemProviderOperationsCloseFileTest() {} |
| 36 virtual ~FileSystemProviderOperationsCloseFileTest() {} | 36 virtual ~FileSystemProviderOperationsCloseFileTest() {} |
| 37 | 37 |
| 38 virtual void SetUp() OVERRIDE { | 38 virtual void SetUp() override { |
| 39 file_system_info_ = | 39 file_system_info_ = |
| 40 ProvidedFileSystemInfo(kExtensionId, | 40 ProvidedFileSystemInfo(kExtensionId, |
| 41 kFileSystemId, | 41 kFileSystemId, |
| 42 "" /* display_name */, | 42 "" /* display_name */, |
| 43 false /* writable */, | 43 false /* writable */, |
| 44 base::FilePath() /* mount_path */); | 44 base::FilePath() /* mount_path */); |
| 45 } | 45 } |
| 46 | 46 |
| 47 ProvidedFileSystemInfo file_system_info_; | 47 ProvidedFileSystemInfo file_system_info_; |
| 48 }; | 48 }; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 close_file.OnError(kRequestId, | 134 close_file.OnError(kRequestId, |
| 135 scoped_ptr<RequestValue>(new RequestValue()), | 135 scoped_ptr<RequestValue>(new RequestValue()), |
| 136 base::File::FILE_ERROR_TOO_MANY_OPENED); | 136 base::File::FILE_ERROR_TOO_MANY_OPENED); |
| 137 ASSERT_EQ(1u, callback_log.size()); | 137 ASSERT_EQ(1u, callback_log.size()); |
| 138 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); | 138 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, callback_log[0]); |
| 139 } | 139 } |
| 140 | 140 |
| 141 } // namespace operations | 141 } // namespace operations |
| 142 } // namespace file_system_provider | 142 } // namespace file_system_provider |
| 143 } // namespace chromeos | 143 } // namespace chromeos |
| OLD | NEW |