| 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 // Tracks information about an FEC group, including the packets | 5 // Tracks information about an FEC group, including the packets |
| 6 // that have been seen, and the running parity. Provides the ability | 6 // that have been seen, and the running parity. Provides the ability |
| 7 // to revive a dropped packet. | 7 // to revive a dropped packet. |
| 8 | 8 |
| 9 #ifndef NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ | 9 #ifndef NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ |
| 10 #define NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ | 10 #define NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include <stddef.h> |
| 13 |
| 14 #include "base/macros.h" |
| 13 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 14 #include "net/base/net_export.h" | 16 #include "net/base/net_export.h" |
| 15 #include "net/quic/quic_protocol.h" | 17 #include "net/quic/quic_protocol.h" |
| 16 | 18 |
| 17 namespace net { | 19 namespace net { |
| 18 | 20 |
| 19 class NET_EXPORT_PRIVATE QuicFecGroupInterface { | 21 class NET_EXPORT_PRIVATE QuicFecGroupInterface { |
| 20 public: | 22 public: |
| 21 ~QuicFecGroupInterface() {} | 23 ~QuicFecGroupInterface() {} |
| 22 | 24 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 protected: | 75 protected: |
| 74 QuicFecGroupInterface() {} | 76 QuicFecGroupInterface() {} |
| 75 | 77 |
| 76 private: | 78 private: |
| 77 DISALLOW_COPY_AND_ASSIGN(QuicFecGroupInterface); | 79 DISALLOW_COPY_AND_ASSIGN(QuicFecGroupInterface); |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 } // namespace net | 82 } // namespace net |
| 81 | 83 |
| 82 #endif // NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ | 84 #endif // NET_QUIC_QUIC_FEC_GROUP_INTERFACE_H_ |
| OLD | NEW |