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

Side by Side Diff: ipc/mojo/ipc_mojo_bootstrap_unittest.cc

Issue 1188923003: Stub in more IPC attachment brokering functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing files. Created 5 years, 6 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
« ipc/mojo/ipc_channel_mojo.cc ('K') | « ipc/mojo/ipc_channel_mojo.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "ipc/mojo/ipc_mojo_bootstrap.h" 5 #include "ipc/mojo/ipc_mojo_bootstrap.h"
6 6
7 #include "base/base_paths.h" 7 #include "base/base_paths.h"
8 #include "base/files/file.h" 8 #include "base/files/file.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "ipc/ipc_test_base.h" 10 #include "ipc/ipc_test_base.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 EXPECT_TRUE(WaitForClientShutdown()); 63 EXPECT_TRUE(WaitForClientShutdown());
64 } 64 }
65 65
66 // A long running process that connects to us. 66 // A long running process that connects to us.
67 MULTIPROCESS_IPC_TEST_CLIENT_MAIN(IPCMojoBootstrapTestClient) { 67 MULTIPROCESS_IPC_TEST_CLIENT_MAIN(IPCMojoBootstrapTestClient) {
68 base::MessageLoopForIO main_message_loop; 68 base::MessageLoopForIO main_message_loop;
69 69
70 TestingDelegate delegate; 70 TestingDelegate delegate;
71 scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create( 71 scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create(
72 IPCTestBase::GetChannelName("IPCMojoBootstrapTestClient"), 72 IPCTestBase::GetChannelName("IPCMojoBootstrapTestClient"),
73 IPC::Channel::MODE_CLIENT, 73 IPC::Channel::MODE_CLIENT, &delegate, nullptr);
74 &delegate,
75 nullptr);
76 74
77 bootstrap->Connect(); 75 bootstrap->Connect();
78 76
79 base::MessageLoop::current()->Run(); 77 base::MessageLoop::current()->Run();
80 78
81 EXPECT_TRUE(delegate.passed()); 79 EXPECT_TRUE(delegate.passed());
82 80
83 return 0; 81 return 0;
84 } 82 }
85 83
86 } // namespace 84 } // namespace
OLDNEW
« ipc/mojo/ipc_channel_mojo.cc ('K') | « ipc/mojo/ipc_channel_mojo.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698