| 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_CORE_QUIC_FRAMER_H_ | 5 #ifndef NET_QUIC_CORE_QUIC_FRAMER_H_ |
| 6 #define NET_QUIC_CORE_QUIC_FRAMER_H_ | 6 #define NET_QUIC_CORE_QUIC_FRAMER_H_ |
| 7 | 7 |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <cstdint> | 9 #include <cstdint> |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <unordered_map> | 12 #include <unordered_map> |
| 13 #include <unordered_set> | 13 #include <unordered_set> |
| 14 | 14 |
| 15 #include "base/logging.h" | |
| 16 #include "base/macros.h" | 15 #include "base/macros.h" |
| 17 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
| 18 #include "net/quic/core/quic_packets.h" | 17 #include "net/quic/core/quic_packets.h" |
| 19 #include "net/quic/platform/api/quic_export.h" | 18 #include "net/quic/platform/api/quic_export.h" |
| 20 | 19 |
| 21 namespace net { | 20 namespace net { |
| 22 | 21 |
| 23 namespace test { | 22 namespace test { |
| 24 class QuicFramerPeer; | 23 class QuicFramerPeer; |
| 25 } // namespace test | 24 } // namespace test |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 QuicTime::Delta last_timestamp_; | 545 QuicTime::Delta last_timestamp_; |
| 547 // The diversification nonce from the last received packet. | 546 // The diversification nonce from the last received packet. |
| 548 DiversificationNonce last_nonce_; | 547 DiversificationNonce last_nonce_; |
| 549 | 548 |
| 550 DISALLOW_COPY_AND_ASSIGN(QuicFramer); | 549 DISALLOW_COPY_AND_ASSIGN(QuicFramer); |
| 551 }; | 550 }; |
| 552 | 551 |
| 553 } // namespace net | 552 } // namespace net |
| 554 | 553 |
| 555 #endif // NET_QUIC_CORE_QUIC_FRAMER_H_ | 554 #endif // NET_QUIC_CORE_QUIC_FRAMER_H_ |
| OLD | NEW |