Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: remoting/host/setup/me2me_native_messaging_host_main.cc

Issue 103053006: Renaming NativeMessagingHost to Me2MeNativeMessagingHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegage
Patch Set: Resolving merge conflict. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « remoting/host/setup/me2me_native_messaging_host.cc ('k') | remoting/host/setup/me2me_native_messaging_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698