| 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 #ifndef THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ | 5 #ifndef THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ |
| 6 #define THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ | 6 #define THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include "base/test/test_io_thread.h" | 8 #include "base/test/test_io_thread.h" |
| 9 #include "mojo/public/cpp/system/macros.h" |
| 9 #include "third_party/mojo/src/mojo/edk/embedder/simple_platform_support.h" | 10 #include "third_party/mojo/src/mojo/edk/embedder/simple_platform_support.h" |
| 10 #include "third_party/mojo/src/mojo/edk/system/channel.h" | 11 #include "third_party/mojo/src/mojo/edk/system/channel.h" |
| 11 #include "third_party/mojo/src/mojo/edk/system/test_utils.h" | 12 #include "third_party/mojo/src/mojo/edk/system/test_utils.h" |
| 12 #include "third_party/mojo/src/mojo/edk/test/multiprocess_test_helper.h" | 13 #include "third_party/mojo/src/mojo/edk/test/multiprocess_test_helper.h" |
| 13 #include "third_party/mojo/src/mojo/public/cpp/system/macros.h" | |
| 14 | 14 |
| 15 namespace mojo { | 15 namespace mojo { |
| 16 namespace system { | 16 namespace system { |
| 17 | 17 |
| 18 class Channel; | 18 class Channel; |
| 19 class ChannelEndpoint; | 19 class ChannelEndpoint; |
| 20 class MessagePipe; | 20 class MessagePipe; |
| 21 | 21 |
| 22 namespace test { | 22 namespace test { |
| 23 | 23 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 MOJO_DISALLOW_COPY_AND_ASSIGN(MultiprocessMessagePipeTestBase); | 66 MOJO_DISALLOW_COPY_AND_ASSIGN(MultiprocessMessagePipeTestBase); |
| 67 }; | 67 }; |
| 68 #endif | 68 #endif |
| 69 | 69 |
| 70 } // namespace test | 70 } // namespace test |
| 71 } // namespace system | 71 } // namespace system |
| 72 } // namespace mojo | 72 } // namespace mojo |
| 73 | 73 |
| 74 #endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ | 74 #endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_MESSAGE_PIPE_TEST_UTILS_H_ |
| OLD | NEW |