OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "build/build_config.h" | 5 #include "build/build_config.h" |
6 | 6 |
7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
8 #include <windows.h> | 8 #include <windows.h> |
9 #endif | 9 #endif |
10 | 10 |
| 11 #include <stdint.h> |
| 12 |
11 #include <string> | 13 #include <string> |
12 | 14 |
13 #include "base/pickle.h" | 15 #include "base/pickle.h" |
14 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
15 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
16 #include "base/threading/thread.h" | 18 #include "base/threading/thread.h" |
17 #include "ipc/ipc_test_base.h" | 19 #include "ipc/ipc_test_base.h" |
18 #include "ipc/ipc_test_channel_listener.h" | 20 #include "ipc/ipc_test_channel_listener.h" |
19 | 21 |
20 namespace { | 22 namespace { |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 IPCTestBase::GetChannelName("GenericClient"), &listener)); | 172 IPCTestBase::GetChannelName("GenericClient"), &listener)); |
171 CHECK(channel->Connect()); | 173 CHECK(channel->Connect()); |
172 listener.Init(channel.get()); | 174 listener.Init(channel.get()); |
173 IPC::TestChannelListener::SendOneMessage(channel.get(), "hello from child"); | 175 IPC::TestChannelListener::SendOneMessage(channel.get(), "hello from child"); |
174 | 176 |
175 base::MessageLoop::current()->Run(); | 177 base::MessageLoop::current()->Run(); |
176 return 0; | 178 return 0; |
177 } | 179 } |
178 | 180 |
179 } // namespace | 181 } // namespace |
OLD | NEW |