| 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;
|
|
|