| Index: remoting/host/it2me/it2me_native_messaging_host_unittest.cc
|
| diff --git a/remoting/host/it2me/it2me_native_messaging_host_unittest.cc b/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
|
| index 2e79b36d79398fc97cf70492e8062b058183a13a..fe8b4f08a069035d68a898b9257a41343ab4d013 100644
|
| --- a/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
|
| +++ b/remoting/host/it2me/it2me_native_messaging_host_unittest.cc
|
| @@ -17,6 +17,7 @@
|
| #include "net/base/net_util.h"
|
| #include "remoting/base/auto_thread_task_runner.h"
|
| #include "remoting/host/chromoting_host_context.h"
|
| +#include "remoting/host/native_messaging/native_messaging_pipe.h"
|
| #include "remoting/host/native_messaging/pipe_messaging_channel.h"
|
| #include "remoting/host/setup/test_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -209,7 +210,7 @@ class It2MeNativeMessagingHostTest : public testing::Test {
|
|
|
| // Task runner of the host thread.
|
| scoped_refptr<AutoThreadTaskRunner> host_task_runner_;
|
| - scoped_ptr<remoting::It2MeNativeMessagingHost> host_;
|
| + scoped_ptr<remoting::NativeMessagingPipe> pipe_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHostTest);
|
| };
|
| @@ -431,15 +432,21 @@ void It2MeNativeMessagingHostTest::StartHost() {
|
| // Creating a native messaging host with a mock It2MeHostFactory.
|
| scoped_ptr<It2MeHostFactory> factory(new MockIt2MeHostFactory());
|
|
|
| + pipe_.reset(new NativeMessagingPipe());
|
| +
|
| scoped_ptr<extensions::NativeMessagingChannel> channel(
|
| new PipeMessagingChannel(input_read_file.Pass(),
|
| output_write_file.Pass()));
|
|
|
| - host_.reset(new It2MeNativeMessagingHost(
|
| - host_task_runner_,
|
| - channel.Pass(),
|
| - factory.Pass()));
|
| - host_->Start(base::Bind(&It2MeNativeMessagingHostTest::StopHost,
|
| + scoped_ptr<extensions::NativeMessageHost> it2me_host(
|
| + new It2MeNativeMessagingHost(
|
| + host_task_runner_,
|
| + factory.Pass()));
|
| + it2me_host->set_client(pipe_.get());
|
| +
|
| + pipe_->Start(it2me_host.Pass(),
|
| + channel.Pass(),
|
| + base::Bind(&It2MeNativeMessagingHostTest::StopHost,
|
| base::Unretained(this)));
|
|
|
| // Notify the test that the host has finished starting up.
|
| @@ -450,7 +457,7 @@ void It2MeNativeMessagingHostTest::StartHost() {
|
| void It2MeNativeMessagingHostTest::StopHost() {
|
| DCHECK(host_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| - host_.reset();
|
| + pipe_.reset();
|
|
|
| // Wait till all shutdown tasks have completed.
|
| base::RunLoop().RunUntilIdle();
|
|
|