| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 | 6 |
| 7 #include "base/single_thread_task_runner.h" | 7 #include "base/single_thread_task_runner.h" |
| 8 #include "ipc/ipc_test_base.h" | 8 #include "ipc/ipc_test_base.h" |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 return GetChannelName(test_client_name_); | 153 return GetChannelName(test_client_name_); |
| 154 } | 154 } |
| 155 | 155 |
| 156 scoped_refptr<base::SequencedTaskRunner> IPCTestBase::task_runner() { | 156 scoped_refptr<base::SequencedTaskRunner> IPCTestBase::task_runner() { |
| 157 return message_loop_->task_runner(); | 157 return message_loop_->task_runner(); |
| 158 } | 158 } |
| 159 | 159 |
| 160 scoped_ptr<IPC::ChannelFactory> IPCTestBase::CreateChannelFactory( | 160 scoped_ptr<IPC::ChannelFactory> IPCTestBase::CreateChannelFactory( |
| 161 const IPC::ChannelHandle& handle, | 161 const IPC::ChannelHandle& handle, |
| 162 base::SequencedTaskRunner* runner) { | 162 base::SequencedTaskRunner* runner) { |
| 163 return IPC::ChannelFactory::Create(handle, IPC::Channel::MODE_SERVER, | 163 return IPC::ChannelFactory::Create(handle, IPC::Channel::MODE_SERVER); |
| 164 attachment_broker_); | |
| 165 } | 164 } |
| OLD | NEW |