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

Unified Diff: remoting/host/desktop_process_unittest.cc

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/desktop_process.cc ('k') | remoting/host/desktop_session_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_process_unittest.cc
diff --git a/remoting/host/desktop_process_unittest.cc b/remoting/host/desktop_process_unittest.cc
index 0f2a89b4642b7c90d326539db54a9f712089ad2c..98b80a1670cb6a9184242b36cde5b81036105f91 100644
--- a/remoting/host/desktop_process_unittest.cc
+++ b/remoting/host/desktop_process_unittest.cc
@@ -175,10 +175,9 @@ void DesktopProcessTest::ConnectNetworkChannel(
IPC::ChannelHandle channel_handle(desktop_process);
#endif // defined(OS_WIN)
- network_channel_ = IPC::ChannelProxy::Create(channel_handle,
- IPC::Channel::MODE_CLIENT,
- &network_listener_,
- io_task_runner_.get());
+ network_channel_ = IPC::ChannelProxy::Create(
+ channel_handle, IPC::Channel::MODE_CLIENT, &network_listener_,
+ io_task_runner_.get(), nullptr);
}
void DesktopProcessTest::OnDesktopAttached(
@@ -246,10 +245,9 @@ void DesktopProcessTest::RunDesktopProcess() {
"IPC thread", ui_task_runner, base::MessageLoop::TYPE_IO);
std::string channel_name = IPC::Channel::GenerateUniqueRandomChannelID();
- daemon_channel_ = IPC::ChannelProxy::Create(IPC::ChannelHandle(channel_name),
- IPC::Channel::MODE_SERVER,
- &daemon_listener_,
- io_task_runner_.get());
+ daemon_channel_ = IPC::ChannelProxy::Create(
+ IPC::ChannelHandle(channel_name), IPC::Channel::MODE_SERVER,
+ &daemon_listener_, io_task_runner_.get(), nullptr);
scoped_ptr<MockDesktopEnvironmentFactory> desktop_environment_factory(
new MockDesktopEnvironmentFactory());
« no previous file with comments | « remoting/host/desktop_process.cc ('k') | remoting/host/desktop_session_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698