summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_test_base.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-09-03 11:01:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-03 18:05:59 +0000
commitff04843f8e1764f37fd0133a61f2727ab1b7960e (patch)
tree6db1de40c6da300ce648d7c203c1e7326ac79f4e /ipc/ipc_test_base.h
parent6087f972c9907159dcde9455fb0bcb2fcabd9d1b (diff)
downloadchromium_src-ff04843f8e1764f37fd0133a61f2727ab1b7960e.zip
chromium_src-ff04843f8e1764f37fd0133a61f2727ab1b7960e.tar.gz
chromium_src-ff04843f8e1764f37fd0133a61f2727ab1b7960e.tar.bz2
ipc/ fixups for scoped_refptr operator T* removal.
BUG=110610 Review URL: https://codereview.chromium.org/535723002 Cr-Commit-Position: refs/heads/master@{#293170}
Diffstat (limited to 'ipc/ipc_test_base.h')
-rw-r--r--ipc/ipc_test_base.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h
index acad477..c304001 100644
--- a/ipc/ipc_test_base.h
+++ b/ipc/ipc_test_base.h
@@ -61,8 +61,9 @@ class IPCTestBase : public base::MultiProcessTest {
// channel proxy will automatically create and connect a channel.) You must
// (manually) destroy the channel proxy before the task runner's thread is
// destroyed.
- void CreateChannelProxy(IPC::Listener* listener,
- base::SingleThreadTaskRunner* ipc_task_runner);
+ void CreateChannelProxy(
+ IPC::Listener* listener,
+ const scoped_refptr<base::SingleThreadTaskRunner>& ipc_task_runner);
void DestroyChannelProxy();
// Starts the client process, returning true if successful; this should be