Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: net/quic/quic_fec_group_interface.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/quic_fec_group.cc ('k') | net/quic/quic_fec_group_interface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/quic/quic_fec_group.cc ('k') | net/quic/quic_fec_group_interface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698