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

Unified Diff: ipc/ipc_channel_mojo_unittest.cc

Issue 2697033004: Mojo C++ bindings: remove usage of AssociatedGroup from ipc/ (Closed)
Patch Set: . Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_channel_mojo.cc ('k') | ipc/ipc_channel_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_mojo_unittest.cc
diff --git a/ipc/ipc_channel_mojo_unittest.cc b/ipc/ipc_channel_mojo_unittest.cc
index b2582cf13b8940e6a4ab94e1a8af1b2e3b1f02b1..4dbf339c62182ba8040e20d657e29daf4e2a0549 100644
--- a/ipc/ipc_channel_mojo_unittest.cc
+++ b/ipc/ipc_channel_mojo_unittest.cc
@@ -920,8 +920,7 @@ DEFINE_IPC_CHANNEL_MOJO_TEST_CLIENT_WITH_CUSTOM_FIXTURE(
IPC::mojom::IndirectTestDriverAssociatedPtr driver;
IPC::mojom::PingReceiverAssociatedPtr ping_receiver;
proxy()->GetRemoteAssociatedInterface(&driver);
- driver->GetPingReceiver(
- mojo::MakeRequest(&ping_receiver, driver.associated_group()));
+ driver->GetPingReceiver(mojo::MakeRequest(&ping_receiver));
base::RunLoop loop;
ping_receiver->Ping(loop.QuitClosure());
@@ -1275,8 +1274,7 @@ TEST_F(IPCChannelProxyMojoTest, AssociatedRequestClose) {
IPC::mojom::AssociatedInterfaceVendorAssociatedPtr vendor;
proxy()->GetRemoteAssociatedInterface(&vendor);
IPC::mojom::SimpleTestDriverAssociatedPtr tester;
- vendor->GetTestInterface(
- mojo::MakeRequest(&tester, vendor.associated_group()));
+ vendor->GetTestInterface(mojo::MakeRequest(&tester));
base::RunLoop run_loop;
tester.set_connection_error_handler(run_loop.QuitClosure());
run_loop.Run();
« no previous file with comments | « ipc/ipc_channel_mojo.cc ('k') | ipc/ipc_channel_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698