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

Unified Diff: ipc/ipc_message_utils.cc

Issue 12681030: Proudly fixing funny indents since 1969 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Chasing HEAD Created 7 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message_utils.cc
diff --git a/ipc/ipc_message_utils.cc b/ipc/ipc_message_utils.cc
index a8ad2b09571dc6f837c007287b245c2d29655307..ea791765b3ecbdfdbe2dad963de0b8566f1c1ed4 100644
--- a/ipc/ipc_message_utils.cc
+++ b/ipc/ipc_message_utils.cc
@@ -43,9 +43,9 @@ void LogBytes(const std::vector<CharType>& data, std::string* out) {
base::StringPrintf("[%02X]", static_cast<unsigned char>(data[i])));
}
if (data.size() > kMaxBytesToLog) {
- out->append(
- base::StringPrintf(" and %u more bytes",
- static_cast<unsigned>(data.size() - kMaxBytesToLog)));
+ out->append(base::StringPrintf(
+ " and %u more bytes",
+ static_cast<unsigned>(data.size() - kMaxBytesToLog)));
}
#endif
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698