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

Side by Side Diff: net/quic/quic_ack_listener_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/port_suggester_unittest.cc ('k') | net/quic/quic_alarm.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_ACK_LISTENER_INTERFACE_H_ 5 #ifndef NET_QUIC_QUIC_ACK_LISTENER_INTERFACE_H_
6 #define NET_QUIC_QUIC_ACK_LISTENER_INTERFACE_H_ 6 #define NET_QUIC_QUIC_ACK_LISTENER_INTERFACE_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
10 #include "net/quic/quic_protocol.h" 9 #include "net/quic/quic_protocol.h"
11 #include "net/quic/quic_time.h" 10 #include "net/quic/quic_time.h"
12 11
13 namespace net { 12 namespace net {
14 13
15 // Pure virtual class to listen for packet acknowledgements. 14 // Pure virtual class to listen for packet acknowledgements.
16 class NET_EXPORT_PRIVATE QuicAckListenerInterface 15 class NET_EXPORT_PRIVATE QuicAckListenerInterface
17 : public base::RefCounted<QuicAckListenerInterface> { 16 : public base::RefCounted<QuicAckListenerInterface> {
18 public: 17 public:
(...skipping 11 matching lines...) Expand all
30 protected: 29 protected:
31 friend class base::RefCounted<QuicAckListenerInterface>; 30 friend class base::RefCounted<QuicAckListenerInterface>;
32 31
33 // Delegates are ref counted. 32 // Delegates are ref counted.
34 virtual ~QuicAckListenerInterface() {} 33 virtual ~QuicAckListenerInterface() {}
35 }; 34 };
36 35
37 } // namespace net 36 } // namespace net
38 37
39 #endif // NET_QUIC_QUIC_ACK_LISTENER_INTERFACE_H_ 38 #endif // NET_QUIC_QUIC_ACK_LISTENER_INTERFACE_H_
OLDNEW
« no previous file with comments | « net/quic/port_suggester_unittest.cc ('k') | net/quic/quic_alarm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698