| 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 <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 <memory> | 9 #include <memory> |
| 10 #include <utility> | 10 #include <utility> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "mojo/edk/embedder/platform_channel_pair.h" | 15 #include "mojo/edk/embedder/platform_channel_pair.h" |
| 16 #include "mojo/edk/embedder/platform_shared_buffer.h" | 16 #include "mojo/edk/embedder/platform_shared_buffer.h" |
| 17 #include "mojo/edk/embedder/scoped_platform_handle.h" | |
| 18 #include "mojo/edk/embedder/simple_platform_support.h" | 17 #include "mojo/edk/embedder/simple_platform_support.h" |
| 18 #include "mojo/edk/platform/scoped_platform_handle.h" |
| 19 #include "mojo/edk/system/channel.h" | 19 #include "mojo/edk/system/channel.h" |
| 20 #include "mojo/edk/system/channel_endpoint.h" | 20 #include "mojo/edk/system/channel_endpoint.h" |
| 21 #include "mojo/edk/system/channel_endpoint_id.h" | 21 #include "mojo/edk/system/channel_endpoint_id.h" |
| 22 #include "mojo/edk/system/incoming_endpoint.h" | 22 #include "mojo/edk/system/incoming_endpoint.h" |
| 23 #include "mojo/edk/system/message_pipe.h" | 23 #include "mojo/edk/system/message_pipe.h" |
| 24 #include "mojo/edk/system/message_pipe_dispatcher.h" | 24 #include "mojo/edk/system/message_pipe_dispatcher.h" |
| 25 #include "mojo/edk/system/platform_handle_dispatcher.h" | 25 #include "mojo/edk/system/platform_handle_dispatcher.h" |
| 26 #include "mojo/edk/system/raw_channel.h" | 26 #include "mojo/edk/system/raw_channel.h" |
| 27 #include "mojo/edk/system/shared_buffer_dispatcher.h" | 27 #include "mojo/edk/system/shared_buffer_dispatcher.h" |
| 28 #include "mojo/edk/system/test/scoped_test_dir.h" | 28 #include "mojo/edk/system/test/scoped_test_dir.h" |
| 29 #include "mojo/edk/system/test/sleep.h" | 29 #include "mojo/edk/system/test/sleep.h" |
| 30 #include "mojo/edk/system/test/test_io_thread.h" | 30 #include "mojo/edk/system/test/test_io_thread.h" |
| 31 #include "mojo/edk/system/test/timeouts.h" | 31 #include "mojo/edk/system/test/timeouts.h" |
| 32 #include "mojo/edk/system/waiter.h" | 32 #include "mojo/edk/system/waiter.h" |
| 33 #include "mojo/edk/test/test_utils.h" | 33 #include "mojo/edk/test/test_utils.h" |
| 34 #include "mojo/edk/util/ref_ptr.h" | 34 #include "mojo/edk/util/ref_ptr.h" |
| 35 #include "mojo/edk/util/scoped_file.h" | 35 #include "mojo/edk/util/scoped_file.h" |
| 36 #include "mojo/public/cpp/system/macros.h" | 36 #include "mojo/public/cpp/system/macros.h" |
| 37 #include "testing/gtest/include/gtest/gtest.h" | 37 #include "testing/gtest/include/gtest/gtest.h" |
| 38 | 38 |
| 39 using mojo::embedder::ScopedPlatformHandle; | 39 using mojo::platform::ScopedPlatformHandle; |
| 40 using mojo::util::MakeRefCounted; | 40 using mojo::util::MakeRefCounted; |
| 41 using mojo::util::RefPtr; | 41 using mojo::util::RefPtr; |
| 42 | 42 |
| 43 namespace mojo { | 43 namespace mojo { |
| 44 namespace system { | 44 namespace system { |
| 45 namespace { | 45 namespace { |
| 46 | 46 |
| 47 const MojoHandleSignals kAllSignals = MOJO_HANDLE_SIGNAL_READABLE | | 47 const MojoHandleSignals kAllSignals = MOJO_HANDLE_SIGNAL_READABLE | |
| 48 MOJO_HANDLE_SIGNAL_WRITABLE | | 48 MOJO_HANDLE_SIGNAL_WRITABLE | |
| 49 MOJO_HANDLE_SIGNAL_PEER_CLOSED; | 49 MOJO_HANDLE_SIGNAL_PEER_CLOSED; |
| (...skipping 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1356 mp0->Close(0); | 1356 mp0->Close(0); |
| 1357 mp1->Close(1); | 1357 mp1->Close(1); |
| 1358 EXPECT_EQ(MOJO_RESULT_OK, dispatcher->Close()); | 1358 EXPECT_EQ(MOJO_RESULT_OK, dispatcher->Close()); |
| 1359 // Note that |local_mp|'s port 0 belong to |dispatcher|, which was closed. | 1359 // Note that |local_mp|'s port 0 belong to |dispatcher|, which was closed. |
| 1360 local_mp->Close(1); | 1360 local_mp->Close(1); |
| 1361 } | 1361 } |
| 1362 | 1362 |
| 1363 } // namespace | 1363 } // namespace |
| 1364 } // namespace system | 1364 } // namespace system |
| 1365 } // namespace mojo | 1365 } // namespace mojo |
| OLD | NEW |