| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include <map> | 8 #include <map> |
| 6 #include <string> | 9 #include <string> |
| 7 | 10 |
| 11 #include "base/macros.h" |
| 8 #include "components/filesystem/files_test_base.h" | 12 #include "components/filesystem/files_test_base.h" |
| 9 #include "mojo/util/capture_util.h" | 13 #include "mojo/util/capture_util.h" |
| 10 | 14 |
| 11 using mojo::Capture; | 15 using mojo::Capture; |
| 12 | 16 |
| 13 namespace filesystem { | 17 namespace filesystem { |
| 14 namespace { | 18 namespace { |
| 15 | 19 |
| 16 using DirectoryImplTest = FilesTestBase; | 20 using DirectoryImplTest = FilesTestBase; |
| 17 | 21 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 ASSERT_TRUE(directory.WaitForIncomingResponse()); | 151 ASSERT_TRUE(directory.WaitForIncomingResponse()); |
| 148 EXPECT_EQ(FILE_ERROR_NOT_A_FILE, error); | 152 EXPECT_EQ(FILE_ERROR_NOT_A_FILE, error); |
| 149 } | 153 } |
| 150 } | 154 } |
| 151 | 155 |
| 152 | 156 |
| 153 // TODO(vtl): Test delete flags. | 157 // TODO(vtl): Test delete flags. |
| 154 | 158 |
| 155 } // namespace | 159 } // namespace |
| 156 } // namespace filesystem | 160 } // namespace filesystem |
| OLD | NEW |