Index: ipc/mojo/ipc_mojo_bootstrap.cc |
diff --git a/ipc/mojo/ipc_mojo_bootstrap.cc b/ipc/mojo/ipc_mojo_bootstrap.cc |
index e449577dcb3317e505a0ffe2cf27332b0226245b..d307246033ffced61d2c4ba3a3b6a0dc72b67c9d 100644 |
--- a/ipc/mojo/ipc_mojo_bootstrap.cc |
+++ b/ipc/mojo/ipc_mojo_bootstrap.cc |
@@ -61,7 +61,7 @@ void MojoServerBootstrap::SendClientPipe() { |
// GetFileHandleForProcess() only fails on Windows. |
NOTREACHED(); |
#endif |
- DLOG(WARNING) << "Failed to translate file handle for client process."; |
+ LOG(WARNING) << "Failed to translate file handle for client process."; |
Fail(); |
return; |
} |
@@ -143,7 +143,7 @@ bool MojoClientBootstrap::OnMessageReceived(const Message& message) { |
PlatformFileForTransit pipe; |
PickleIterator iter(message); |
if (!ParamTraits<PlatformFileForTransit>::Read(&message, &iter, &pipe)) { |
- DLOG(WARNING) << "Failed to read a file handle from bootstrap channel."; |
+ LOG(WARNING) << "Failed to read a file handle from bootstrap channel."; |
message.set_dispatch_error(); |
return false; |
} |