Index: remoting/host/setup/me2me_native_messaging_host_main.cc |
diff --git a/remoting/host/setup/me2me_native_messaging_host_main.cc b/remoting/host/setup/me2me_native_messaging_host_main.cc |
index 42db57eec1a389a33e18eab99817d5eea45ed7cc..7b48a746c6254902b7e495c1917ce5c7ce3dce5b 100644 |
--- a/remoting/host/setup/me2me_native_messaging_host_main.cc |
+++ b/remoting/host/setup/me2me_native_messaging_host_main.cc |
@@ -21,7 +21,7 @@ const char kParentWindowSwitchName[] = "parent-window"; |
namespace remoting { |
-int NativeMessagingHostMain() { |
+int Me2MeNativeMessagingHostMain() { |
#if defined(OS_WIN) |
// GetStdHandle() returns pseudo-handles for stdin and stdout even if |
// the hosting executable specifies "Windows" subsystem. However the returned |
@@ -80,8 +80,8 @@ int NativeMessagingHostMain() { |
scoped_ptr<NativeMessagingChannel> channel( |
new NativeMessagingChannel(read_file, write_file)); |
- scoped_ptr<NativeMessagingHost> host( |
- new NativeMessagingHost(channel.Pass(), |
+ scoped_ptr<Me2MeNativeMessagingHost> host( |
+ new Me2MeNativeMessagingHost(channel.Pass(), |
daemon_controller, |
pairing_registry, |
oauth_client.Pass())); |
@@ -101,5 +101,5 @@ int main(int argc, char** argv) { |
CommandLine::Init(argc, argv); |
remoting::InitHostLogging(); |
- return remoting::NativeMessagingHostMain(); |
+ return remoting::Me2MeNativeMessagingHostMain(); |
} |