Index: remoting/host/ipc_util_win.cc |
diff --git a/remoting/host/ipc_util_win.cc b/remoting/host/ipc_util_win.cc |
index a8c28db11fee4c2648e1ce213aa78247924beacd..37c3383087e1573b92a8eb4a4a44e0cd30fb1d45 100644 |
--- a/remoting/host/ipc_util_win.cc |
+++ b/remoting/host/ipc_util_win.cc |
@@ -78,7 +78,7 @@ bool CreateConnectedIpcChannel( |
FILE_FLAG_OVERLAPPED, |
NULL)); |
if (!client.IsValid()) { |
- LOG_GETLASTERROR(ERROR) << "Failed to connect to '" << pipe_name << "'"; |
+ PLOG(ERROR) << "Failed to connect to '" << pipe_name << "'"; |
return false; |
} |
@@ -94,8 +94,8 @@ bool CreateIpcChannel( |
// Create security descriptor for the channel. |
ScopedSd sd = ConvertSddlToSd(pipe_security_descriptor); |
if (!sd) { |
- LOG_GETLASTERROR(ERROR) << |
- "Failed to create a security descriptor for the Chromoting IPC channel"; |
+ PLOG(ERROR) << "Failed to create a security descriptor for the Chromoting " |
+ "IPC channel"; |
return false; |
} |
@@ -121,8 +121,8 @@ bool CreateIpcChannel( |
5000, |
&security_attributes)); |
if (!pipe.IsValid()) { |
- LOG_GETLASTERROR(ERROR) << |
- "Failed to create the server end of the Chromoting IPC channel"; |
+ PLOG(ERROR) |
+ << "Failed to create the server end of the Chromoting IPC channel"; |
return false; |
} |