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..9de817f1e0d39eba25d13e00f5ea707175f88155 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> host_; |
DISALLOW_COPY_AND_ASSIGN(It2MeNativeMessagingHostTest); |
}; |
@@ -431,14 +432,19 @@ void It2MeNativeMessagingHostTest::StartHost() { |
// Creating a native messaging host with a mock It2MeHostFactory. |
scoped_ptr<It2MeHostFactory> factory(new MockIt2MeHostFactory()); |
+ host_.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())); |
+ scoped_ptr<extensions::NativeMessageHost> it2meHost( |
+ new It2MeNativeMessagingHost( |
+ host_task_runner_, |
+ 0, // The |port_id| is not used in out-of-process host. |
+ host_->AsWeakPtr(), |
+ factory.Pass())); |
+ |
host_->Start(base::Bind(&It2MeNativeMessagingHostTest::StopHost, |
base::Unretained(this))); |