| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "net/quic/quic_write_blocked_list.h" | |
| 6 | |
| 7 namespace net { | |
| 8 | |
| 9 QuicWriteBlockedList::QuicWriteBlockedList() | |
| 10 : last_priority_popped_(0), | |
| 11 crypto_stream_blocked_(false), | |
| 12 headers_stream_blocked_(false) { | |
| 13 memset(batch_write_stream_id_, 0, sizeof(batch_write_stream_id_)); | |
| 14 memset(bytes_left_for_batch_write_, 0, sizeof(bytes_left_for_batch_write_)); | |
| 15 } | |
| 16 | |
| 17 QuicWriteBlockedList::~QuicWriteBlockedList() {} | |
| 18 | |
| 19 } // namespace net | |
| OLD | NEW |