| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_QUIC_PROTOCOL_H_ | 5 #ifndef NET_QUIC_QUIC_PROTOCOL_H_ |
| 6 #define NET_QUIC_QUIC_PROTOCOL_H_ | 6 #define NET_QUIC_QUIC_PROTOCOL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <limits> | 9 #include <limits> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <ostream> | 11 #include <ostream> |
| 12 #include <set> | 12 #include <set> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
| 18 #include "base/hash_tables.h" | 18 #include "base/containers/hash_tables.h" |
| 19 #include "base/logging.h" | 19 #include "base/logging.h" |
| 20 #include "base/strings/string_piece.h" | 20 #include "base/strings/string_piece.h" |
| 21 #include "net/base/int128.h" | 21 #include "net/base/int128.h" |
| 22 #include "net/base/net_export.h" | 22 #include "net/base/net_export.h" |
| 23 #include "net/quic/quic_bandwidth.h" | 23 #include "net/quic/quic_bandwidth.h" |
| 24 #include "net/quic/quic_time.h" | 24 #include "net/quic/quic_time.h" |
| 25 | 25 |
| 26 namespace net { | 26 namespace net { |
| 27 | 27 |
| 28 using ::operator<<; | 28 using ::operator<<; |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 NET_EXPORT_PRIVATE friend std::ostream& operator<<( | 770 NET_EXPORT_PRIVATE friend std::ostream& operator<<( |
| 771 std::ostream& os, const QuicConsumedData& s); | 771 std::ostream& os, const QuicConsumedData& s); |
| 772 | 772 |
| 773 size_t bytes_consumed; | 773 size_t bytes_consumed; |
| 774 bool fin_consumed; | 774 bool fin_consumed; |
| 775 }; | 775 }; |
| 776 | 776 |
| 777 } // namespace net | 777 } // namespace net |
| 778 | 778 |
| 779 #endif // NET_QUIC_QUIC_PROTOCOL_H_ | 779 #endif // NET_QUIC_QUIC_PROTOCOL_H_ |
| OLD | NEW |