| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 <stdio.h> | 5 #include <stdio.h> |
| 6 #include <iostream> | |
| 7 #include <string> | 6 #include <string> |
| 8 #include <sstream> | 7 #include <sstream> |
| 9 | 8 |
| 10 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 11 #if defined(OS_LINUX) || defined(OS_MACOSX) | 10 #if defined(OS_LINUX) || defined(OS_MACOSX) |
| 12 #include "base/file_descriptor_posix.h" | 11 #include "base/file_descriptor_posix.h" |
| 13 #endif // defined(OS_LINUX) || defined(OS_MACOSX) | 12 #endif // defined(OS_LINUX) || defined(OS_MACOSX) |
| 14 #include "base/platform_thread.h" | 13 #include "base/platform_thread.h" |
| 15 #include "base/process_util.h" | 14 #include "base/process_util.h" |
| 16 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 #endif // defined(OS_WIN) | 241 #endif // defined(OS_WIN) |
| 243 EXPECT_TRUE(chan.Send(msg)); | 242 EXPECT_TRUE(chan.Send(msg)); |
| 244 // Use the current thread as the I/O thread. | 243 // Use the current thread as the I/O thread. |
| 245 MessageLoop::current()->Run(); | 244 MessageLoop::current()->Run(); |
| 246 // Shut down. | 245 // Shut down. |
| 247 delete pair[0]; | 246 delete pair[0]; |
| 248 delete pair[1]; | 247 delete pair[1]; |
| 249 EXPECT_TRUE(base::WaitForSingleProcess(server_process, 5000)); | 248 EXPECT_TRUE(base::WaitForSingleProcess(server_process, 5000)); |
| 250 base::CloseProcessHandle(server_process); | 249 base::CloseProcessHandle(server_process); |
| 251 } | 250 } |
| OLD | NEW |