| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stdint.h> | 5 #include <stdint.h> |
| 6 #include <stdio.h> | 6 #include <stdio.h> |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/file_util.h" | |
| 14 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/files/file_util.h" |
| 15 #include "base/files/scoped_file.h" | 15 #include "base/files/scoped_file.h" |
| 16 #include "base/files/scoped_temp_dir.h" | 16 #include "base/files/scoped_temp_dir.h" |
| 17 #include "base/location.h" | 17 #include "base/location.h" |
| 18 #include "base/logging.h" | 18 #include "base/logging.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "build/build_config.h" // TODO(vtl): Remove this. | 20 #include "build/build_config.h" // TODO(vtl): Remove this. |
| 21 #include "mojo/common/test/test_utils.h" | 21 #include "mojo/common/test/test_utils.h" |
| 22 #include "mojo/embedder/platform_shared_buffer.h" | 22 #include "mojo/embedder/platform_shared_buffer.h" |
| 23 #include "mojo/embedder/scoped_platform_handle.h" | 23 #include "mojo/embedder/scoped_platform_handle.h" |
| 24 #include "mojo/system/channel.h" | 24 #include "mojo/system/channel.h" |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 EXPECT_EQ(0u, hss.satisfiable_signals); | 507 EXPECT_EQ(0u, hss.satisfiable_signals); |
| 508 | 508 |
| 509 mp->Close(0); | 509 mp->Close(0); |
| 510 | 510 |
| 511 EXPECT_EQ(0, helper()->WaitForChildShutdown()); | 511 EXPECT_EQ(0, helper()->WaitForChildShutdown()); |
| 512 } | 512 } |
| 513 | 513 |
| 514 } // namespace | 514 } // namespace |
| 515 } // namespace system | 515 } // namespace system |
| 516 } // namespace mojo | 516 } // namespace mojo |
| OLD | NEW |