Index: net/quic/core/frames/quic_blocked_frame.cc |
diff --git a/net/quic/core/frames/quic_blocked_frame.cc b/net/quic/core/frames/quic_blocked_frame.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a7078382038959f9edf4b6820ec4a56ff4ea73a0 |
--- /dev/null |
+++ b/net/quic/core/frames/quic_blocked_frame.cc |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "net/quic/core/frames/quic_blocked_frame.h" |
+ |
+using std::ostream; |
+ |
+namespace net { |
+ |
+QuicBlockedFrame::QuicBlockedFrame(QuicStreamId stream_id) |
+ : stream_id(stream_id) {} |
+ |
+ostream& operator<<(ostream& os, const QuicBlockedFrame& blocked_frame) { |
+ os << "{ stream_id: " << blocked_frame.stream_id << " }\n"; |
+ return os; |
+} |
+ |
+} // namespace net |