summaryrefslogtreecommitdiffstats
path: root/remoting/host/ipc_util_posix.cc
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-01 04:33:17 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-01 04:33:17 +0000
commitf9d8a772bb120d9e4a311c8fb72553d3356a6a3a (patch)
tree3e9cfc6461e6df6d318774a5fabf82ab05dbad27 /remoting/host/ipc_util_posix.cc
parent83501baf7d4e148982f9068fbca4379ccf983540 (diff)
downloadchromium_src-f9d8a772bb120d9e4a311c8fb72553d3356a6a3a.zip
chromium_src-f9d8a772bb120d9e4a311c8fb72553d3356a6a3a.tar.gz
chromium_src-f9d8a772bb120d9e4a311c8fb72553d3356a6a3a.tar.bz2
Update remoting/ and jingle/ to use scoped_refptr<T>::get() rather than implicit "operator T*"
Linux fixes BUG=110610 TBR=darin Review URL: https://chromiumcodereview.appspot.com/15782010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203573 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/ipc_util_posix.cc')
-rw-r--r--remoting/host/ipc_util_posix.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/remoting/host/ipc_util_posix.cc b/remoting/host/ipc_util_posix.cc
index e747a77..55f215d 100644
--- a/remoting/host/ipc_util_posix.cc
+++ b/remoting/host/ipc_util_posix.cc
@@ -45,11 +45,10 @@ bool CreateConnectedIpcChannel(
// Wrap the pipe into an IPC channel.
base::FileDescriptor fd(pipe_fds[0], false);
IPC::ChannelHandle handle(socket_name, fd);
- server_out->reset(new IPC::ChannelProxy(
- IPC::ChannelHandle(socket_name, fd),
- IPC::Channel::MODE_SERVER,
- listener,
- io_task_runner));
+ server_out->reset(new IPC::ChannelProxy(IPC::ChannelHandle(socket_name, fd),
+ IPC::Channel::MODE_SERVER,
+ listener,
+ io_task_runner.get()));
*client_out = base::FileDescriptor(pipe_fds[1], false);
return true;