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

Unified Diff: remoting/host/desktop_session_agent.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 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/desktop_session_agent.cc
diff --git a/remoting/host/desktop_session_agent.cc b/remoting/host/desktop_session_agent.cc
index 43862d1452c854e0e6c79d4b5c11d08a724f7f91..f5fa252f53deb184b7ea31c567bd372c5a14129b 100644
--- a/remoting/host/desktop_session_agent.cc
+++ b/remoting/host/desktop_session_agent.cc
@@ -198,7 +198,8 @@ bool DesktopSessionAgent::OnMessageReceived(const IPC::Message& message) {
IPC_END_MESSAGE_MAP()
}
- CHECK(handled) << "Received unexpected IPC type: " << message.type();
+ // Received unexpected IPC type.
+ CHECK(handled);
return handled;
}

Powered by Google App Engine
This is Rietveld 408576698