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

Unified Diff: net/tools/flip_server/constants.h

Issue 93793004: Format and Refactor Flip Server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 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
« no previous file with comments | « net/tools/flip_server/acceptor_thread.cc ('k') | net/tools/flip_server/create_listener.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/constants.h
diff --git a/net/tools/flip_server/constants.h b/net/tools/flip_server/constants.h
index cc07d6189157331f57944f31a0bf017e381c4c2a..551650909c4eb159327965bfc4774c96373ed7e2 100644
--- a/net/tools/flip_server/constants.h
+++ b/net/tools/flip_server/constants.h
@@ -15,8 +15,7 @@ const int kSSLSegmentSize = (1 * kMSS) - kSSLOverhead;
const int kSpdySegmentSize = kSSLSegmentSize - kSpdyOverhead;
#define ACCEPTOR_CLIENT_IDENT \
- acceptor_->listen_ip_ << ":" \
- << acceptor_->listen_port_ << " "
+ acceptor_->listen_ip_ << ":" << acceptor_->listen_port_ << " "
#define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
(((IP)>>16)&0xff), (((IP)>>24)&0xff)
« no previous file with comments | « net/tools/flip_server/acceptor_thread.cc ('k') | net/tools/flip_server/create_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698