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

Unified Diff: net/quic/core/frames/quic_frame.cc

Issue 2524523002: Remove various 'using std::' statements from QUIC code and use (Closed)
Patch Set: 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
« no previous file with comments | « net/quic/core/frames/quic_connection_close_frame.cc ('k') | net/quic/core/frames/quic_goaway_frame.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/frames/quic_frame.cc
diff --git a/net/quic/core/frames/quic_frame.cc b/net/quic/core/frames/quic_frame.cc
index c33cb74bd2c84935d2e94f95870cda34c097868a..72d2e41fb09801fbbd30cde471959375986c2c67 100644
--- a/net/quic/core/frames/quic_frame.cc
+++ b/net/quic/core/frames/quic_frame.cc
@@ -5,7 +5,6 @@
#include "net/quic/core/frames/quic_frame.h"
using base::StringPiece;
-using std::ostream;
using std::string;
namespace net {
@@ -101,7 +100,7 @@ void RemoveFramesForStream(QuicFrames* frames, QuicStreamId stream_id) {
}
}
-ostream& operator<<(ostream& os, const QuicFrame& frame) {
+std::ostream& operator<<(std::ostream& os, const QuicFrame& frame) {
switch (frame.type) {
case PADDING_FRAME: {
os << "type { PADDING_FRAME } " << frame.padding_frame;
« no previous file with comments | « net/quic/core/frames/quic_connection_close_frame.cc ('k') | net/quic/core/frames/quic_goaway_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698