Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: ipc/sync_socket_unittest.cc

Issue 3014015: Remove <iostream> where possible. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix chrome frame compile Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ipc/ipc_tests.cc ('k') | net/base/x509_cert_types.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « ipc/ipc_tests.cc ('k') | net/base/x509_cert_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698