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

Unified Diff: chrome/common/message_router.cc

Issue 40226: Fix files with lines > 80 cols. Part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 10 months 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
« no previous file with comments | « chrome/common/mach_ipc_mac.h ('k') | chrome/common/net/url_request_intercept_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/message_router.cc
===================================================================
--- chrome/common/message_router.cc (revision 11111)
+++ chrome/common/message_router.cc (working copy)
@@ -6,11 +6,13 @@
#include "chrome/common/render_messages.h"
void MessageRouter::OnControlMessageReceived(const IPC::Message& msg) {
- NOTREACHED() << "should override in subclass if you care about control messages";
+ NOTREACHED() <<
+ "should override in subclass if you care about control messages";
}
bool MessageRouter::Send(IPC::Message* msg) {
- NOTREACHED() << "should override in subclass if you care about sending messages";
+ NOTREACHED() <<
+ "should override in subclass if you care about sending messages";
return false;
}
« no previous file with comments | « chrome/common/mach_ipc_mac.h ('k') | chrome/common/net/url_request_intercept_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698