| 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 11 matching lines...) Expand all Loading... |
| 22 channel_id_ = IPC::Channel::GenerateVerifiedChannelID(""); | 22 channel_id_ = IPC::Channel::GenerateVerifiedChannelID(""); |
| 23 dummy_listener_.reset(new DummyListener()); | 23 dummy_listener_.reset(new DummyListener()); |
| 24 | 24 |
| 25 SetupIpcThread(); | 25 SetupIpcThread(); |
| 26 | 26 |
| 27 if (IPC::ChannelMojo::ShouldBeUsed()) { | 27 if (IPC::ChannelMojo::ShouldBeUsed()) { |
| 28 SetupMojo(); | 28 SetupMojo(); |
| 29 } else { | 29 } else { |
| 30 channel_ = IPC::ChannelProxy::Create(channel_id_, IPC::Channel::MODE_SERVER, | 30 channel_ = IPC::ChannelProxy::Create(channel_id_, IPC::Channel::MODE_SERVER, |
| 31 dummy_listener_.get(), | 31 dummy_listener_.get(), |
| 32 ipc_thread_->task_runner()); | 32 ipc_thread_->task_runner(), nullptr); |
| 33 } | 33 } |
| 34 } | 34 } |
| 35 | 35 |
| 36 RenderThreadImplBrowserIPCTestHelper::~RenderThreadImplBrowserIPCTestHelper() { | 36 RenderThreadImplBrowserIPCTestHelper::~RenderThreadImplBrowserIPCTestHelper() { |
| 37 } | 37 } |
| 38 | 38 |
| 39 void RenderThreadImplBrowserIPCTestHelper::SetupIpcThread() { | 39 void RenderThreadImplBrowserIPCTestHelper::SetupIpcThread() { |
| 40 ipc_thread_.reset(new base::Thread("test_ipc_thread")); | 40 ipc_thread_.reset(new base::Thread("test_ipc_thread")); |
| 41 base::Thread::Options options; | 41 base::Thread::Options options; |
| 42 options.message_loop_type = base::MessageLoop::TYPE_IO; | 42 options.message_loop_type = base::MessageLoop::TYPE_IO; |
| 43 ASSERT_TRUE(ipc_thread_->StartWithOptions(options)); | 43 ASSERT_TRUE(ipc_thread_->StartWithOptions(options)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void RenderThreadImplBrowserIPCTestHelper::SetupMojo() { | 46 void RenderThreadImplBrowserIPCTestHelper::SetupMojo() { |
| 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(), | 57 ipc_thread_->task_runner(), |
| 58 channel_id_), | 58 channel_id_, nullptr), |
| 59 dummy_listener_.get(), ipc_thread_->task_runner()); | 59 dummy_listener_.get(), ipc_thread_->task_runner()); |
| 60 | 60 |
| 61 mojo_application_host_->Init(); | 61 mojo_application_host_->Init(); |
| 62 mojo_application_host_->Activate(channel_.get(), | 62 mojo_application_host_->Activate(channel_.get(), |
| 63 base::GetCurrentProcessHandle()); | 63 base::GetCurrentProcessHandle()); |
| 64 mojo_host_->OnClientLaunched(base::GetCurrentProcessHandle()); | 64 mojo_host_->OnClientLaunched(base::GetCurrentProcessHandle()); |
| 65 } | 65 } |
| 66 | 66 |
| 67 scoped_refptr<base::SingleThreadTaskRunner> | 67 scoped_refptr<base::SingleThreadTaskRunner> |
| 68 RenderThreadImplBrowserIPCTestHelper::GetIOTaskRunner() const { | 68 RenderThreadImplBrowserIPCTestHelper::GetIOTaskRunner() const { |
| 69 return ipc_thread_->task_runner(); | 69 return ipc_thread_->task_runner(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace content | 72 } // namespace content |
| OLD | NEW |