| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/test/render_thread_impl_browser_test_ipc_helper.h" | 5 #include "content/test/render_thread_impl_browser_test_ipc_helper.h" |
| 6 | 6 |
| 7 #include "content/common/mojo/channel_init.h" | 7 #include "content/common/mojo/channel_init.h" |
| 8 #include "ipc/mojo/ipc_channel_mojo_host.h" | 8 #include "ipc/mojo/ipc_channel_mojo_host.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 InitializeMojo(); | 47 InitializeMojo(); |
| 48 | 48 |
| 49 ipc_support_.reset(new IPC::ScopedIPCSupport(ipc_thread_->task_runner())); | 49 ipc_support_.reset(new IPC::ScopedIPCSupport(ipc_thread_->task_runner())); |
| 50 mojo_host_.reset(new IPC::ChannelMojoHost(ipc_thread_->task_runner())); | 50 mojo_host_.reset(new IPC::ChannelMojoHost(ipc_thread_->task_runner())); |
| 51 mojo_application_host_.reset(new MojoApplicationHost()); | 51 mojo_application_host_.reset(new MojoApplicationHost()); |
| 52 mojo_application_host_->OverrideIOTaskRunnerForTest( | 52 mojo_application_host_->OverrideIOTaskRunnerForTest( |
| 53 ipc_thread_->task_runner()); | 53 ipc_thread_->task_runner()); |
| 54 | 54 |
| 55 channel_ = IPC::ChannelProxy::Create( | 55 channel_ = IPC::ChannelProxy::Create( |
| 56 IPC::ChannelMojo::CreateServerFactory(mojo_host_->channel_delegate(), | 56 IPC::ChannelMojo::CreateServerFactory(mojo_host_->channel_delegate(), |
| 57 ipc_thread_->task_runner(), | |
| 58 channel_id_), | 57 channel_id_), |
| 59 dummy_listener_.get(), ipc_thread_->task_runner()); | 58 dummy_listener_.get(), ipc_thread_->task_runner()); |
| 60 | 59 |
| 61 mojo_application_host_->Init(); | 60 mojo_application_host_->Init(); |
| 62 mojo_application_host_->Activate(channel_.get(), | 61 mojo_application_host_->Activate(channel_.get(), |
| 63 base::GetCurrentProcessHandle()); | 62 base::GetCurrentProcessHandle()); |
| 64 mojo_host_->OnClientLaunched(base::GetCurrentProcessHandle()); | 63 mojo_host_->OnClientLaunched(base::GetCurrentProcessHandle()); |
| 65 } | 64 } |
| 66 | 65 |
| 67 scoped_refptr<base::SingleThreadTaskRunner> | 66 scoped_refptr<base::SingleThreadTaskRunner> |
| 68 RenderThreadImplBrowserIPCTestHelper::GetIOTaskRunner() const { | 67 RenderThreadImplBrowserIPCTestHelper::GetIOTaskRunner() const { |
| 69 return ipc_thread_->task_runner(); | 68 return ipc_thread_->task_runner(); |
| 70 } | 69 } |
| 71 | 70 |
| 72 } // namespace content | 71 } // namespace content |
| OLD | NEW |