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

Unified Diff: net/tools/quic/quic_client_bin.cc

Issue 1019793009: Add an extra newline after "Response:" in quic_client's output. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge_88795283
Patch Set: Created 5 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: net/tools/quic/quic_client_bin.cc
diff --git a/net/tools/quic/quic_client_bin.cc b/net/tools/quic/quic_client_bin.cc
index 234f5268b1ae0448a46840595d160768dd9120e8..8154fc8da9800c3c3b3ef2cf8769e1531976be99 100644
--- a/net/tools/quic/quic_client_bin.cc
+++ b/net/tools/quic/quic_client_bin.cc
@@ -269,7 +269,8 @@ int main(int argc, char *argv[]) {
cout << " " << kv.first << ": " << kv.second << endl;
}
cout << "body: " << FLAGS_body << endl;
- cout << endl << "Response:";
+ cout << endl;
+ cout << "Response:" << endl;
cout << "headers: " << client.latest_response_headers() << endl;
cout << "body: " << client.latest_response_body() << endl;
}
« 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