summaryrefslogtreecommitdiffstats
path: root/ipc/mojo/ipc_channel_mojo_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/mojo/ipc_channel_mojo_unittest.cc')
-rw-r--r--ipc/mojo/ipc_channel_mojo_unittest.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/ipc/mojo/ipc_channel_mojo_unittest.cc b/ipc/mojo/ipc_channel_mojo_unittest.cc
index 2442afe..47e72fc 100644
--- a/ipc/mojo/ipc_channel_mojo_unittest.cc
+++ b/ipc/mojo/ipc_channel_mojo_unittest.cc
@@ -89,7 +89,7 @@ class IPCChannelMojoTest : public IPCTestBase {
bool DidStartClient() override {
bool ok = IPCTestBase::DidStartClient();
DCHECK(ok);
- host_->OnClientLaunched(client_process());
+ host_->OnClientLaunched(client_process().Handle());
return ok;
}
@@ -195,7 +195,7 @@ class IPCChannelMojoErrorTest : public IPCTestBase {
bool DidStartClient() override {
bool ok = IPCTestBase::DidStartClient();
DCHECK(ok);
- host_->OnClientLaunched(client_process());
+ host_->OnClientLaunched(client_process().Handle());
return ok;
}
@@ -269,10 +269,11 @@ class IPCChannelMojoDeadHandleTest : public IPCTestBase {
virtual bool DidStartClient() override {
IPCTestBase::DidStartClient();
- base::ProcessHandle client = client_process();
+ const base::ProcessHandle client = client_process().Handle();
// Forces GetFileHandleForProcess() fail. It happens occasionally
// in production, so we should exercise it somehow.
- ::CloseHandle(client);
+ // TODO(morrita): figure out how to safely test this.
+ // ::CloseHandle(client);
host_->OnClientLaunched(client);
return true;
}