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

Side by Side Diff: ipc/ipc_test_base.cc

Issue 18156002: Use a direct include of time headers in courgette/, crypto/, dbus/, device/, google_apis/, gpu/, ip… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « ipc/ipc_perftests.cc ('k') | jingle/glue/pseudotcp_adapter.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) 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 #include "ipc/ipc_test_base.h" 7 #include "ipc/ipc_test_base.h"
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/debug/debug_on_start_win.h" 10 #include "base/debug/debug_on_start_win.h"
11 #include "base/threading/thread.h" 11 #include "base/threading/thread.h"
12 #include "base/time.h" 12 #include "base/time/time.h"
13 #include "ipc/ipc_descriptors.h" 13 #include "ipc/ipc_descriptors.h"
14 #include "ipc/ipc_switches.h" 14 #include "ipc/ipc_switches.h"
15 15
16 // static 16 // static
17 std::string IPCTestBase::GetChannelName(const std::string& test_client_name) { 17 std::string IPCTestBase::GetChannelName(const std::string& test_client_name) {
18 DCHECK(!test_client_name.empty()); 18 DCHECK(!test_client_name.empty());
19 return test_client_name + "__Channel"; 19 return test_client_name + "__Channel";
20 } 20 }
21 21
22 IPCTestBase::IPCTestBase() 22 IPCTestBase::IPCTestBase()
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 113
114 bool IPCTestBase::WaitForClientShutdown() { 114 bool IPCTestBase::WaitForClientShutdown() {
115 DCHECK(client_process_ != base::kNullProcessHandle); 115 DCHECK(client_process_ != base::kNullProcessHandle);
116 116
117 bool rv = base::WaitForSingleProcess(client_process_, 117 bool rv = base::WaitForSingleProcess(client_process_,
118 base::TimeDelta::FromSeconds(5)); 118 base::TimeDelta::FromSeconds(5));
119 base::CloseProcessHandle(client_process_); 119 base::CloseProcessHandle(client_process_);
120 client_process_ = base::kNullProcessHandle; 120 client_process_ = base::kNullProcessHandle;
121 return rv; 121 return rv;
122 } 122 }
OLDNEW
« no previous file with comments | « ipc/ipc_perftests.cc ('k') | jingle/glue/pseudotcp_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698