| Index: net/quic/core/frames/quic_rst_stream_frame.cc
|
| diff --git a/net/quic/core/frames/quic_rst_stream_frame.cc b/net/quic/core/frames/quic_rst_stream_frame.cc
|
| index dc929fd3898756dfd7105df053e35413719b7e63..7b2afa7c2780724ffa4980a6681b12b1464014fc 100644
|
| --- a/net/quic/core/frames/quic_rst_stream_frame.cc
|
| +++ b/net/quic/core/frames/quic_rst_stream_frame.cc
|
| @@ -4,8 +4,6 @@
|
|
|
| #include "net/quic/core/frames/quic_rst_stream_frame.h"
|
|
|
| -using std::ostream;
|
| -
|
| namespace net {
|
|
|
| QuicRstStreamFrame::QuicRstStreamFrame()
|
| @@ -18,7 +16,8 @@ QuicRstStreamFrame::QuicRstStreamFrame(QuicStreamId stream_id,
|
| error_code(error_code),
|
| byte_offset(bytes_written) {}
|
|
|
| -ostream& operator<<(ostream& os, const QuicRstStreamFrame& rst_frame) {
|
| +std::ostream& operator<<(std::ostream& os,
|
| + const QuicRstStreamFrame& rst_frame) {
|
| os << "{ stream_id: " << rst_frame.stream_id
|
| << ", error_code: " << rst_frame.error_code << " }\n";
|
| return os;
|
|
|