| 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 d164bec28ed1752884f79fb4b019ab8a5068c3c2..ee6aad89925d11702fea3be73b2c25453403e6d2 100644
|
| --- a/remoting/host/setup/me2me_native_messaging_host_main.cc
|
| +++ b/remoting/host/setup/me2me_native_messaging_host_main.cc
|
| @@ -134,8 +134,7 @@ int StartMe2MeNativeMessagingHost() {
|
| input_pipe_name.c_str(), GENERIC_READ, 0, NULL, OPEN_EXISTING,
|
| FILE_ATTRIBUTE_NORMAL, NULL));
|
| if (!read_file.IsValid()) {
|
| - LOG_GETLASTERROR(ERROR) <<
|
| - "CreateFile failed on '" << input_pipe_name << "'";
|
| + PLOG(ERROR) << "CreateFile failed on '" << input_pipe_name << "'";
|
| return kInitializationFailed;
|
| }
|
|
|
| @@ -143,8 +142,7 @@ int StartMe2MeNativeMessagingHost() {
|
| output_pipe_name.c_str(), GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
|
| FILE_ATTRIBUTE_NORMAL, NULL));
|
| if (!write_file.IsValid()) {
|
| - LOG_GETLASTERROR(ERROR) <<
|
| - "CreateFile failed on '" << output_pipe_name << "'";
|
| + PLOG(ERROR) << "CreateFile failed on '" << output_pipe_name << "'";
|
| return kInitializationFailed;
|
| }
|
| } else {
|
|
|