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

Side by Side Diff: net/quic/core/quic_sent_packet_manager.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 months 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
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_SENT_PACKET_MANAGER_H_ 5 #ifndef NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
6 #define NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_ 6 #define NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <set> 12 #include <set>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "net/base/linked_hash_map.h" 17 #include "net/base/linked_hash_map.h"
18 #include "net/quic/congestion_control/loss_detection_interface.h" 18 #include "net/quic/core/congestion_control/loss_detection_interface.h"
19 #include "net/quic/congestion_control/rtt_stats.h" 19 #include "net/quic/core/congestion_control/rtt_stats.h"
20 #include "net/quic/congestion_control/send_algorithm_interface.h" 20 #include "net/quic/core/congestion_control/send_algorithm_interface.h"
21 #include "net/quic/quic_protocol.h" 21 #include "net/quic/core/quic_protocol.h"
22 #include "net/quic/quic_sent_packet_manager_interface.h" 22 #include "net/quic/core/quic_sent_packet_manager_interface.h"
23 #include "net/quic/quic_unacked_packet_map.h" 23 #include "net/quic/core/quic_unacked_packet_map.h"
24 24
25 namespace net { 25 namespace net {
26 26
27 namespace test { 27 namespace test {
28 class QuicConnectionPeer; 28 class QuicConnectionPeer;
29 class QuicSentPacketManagerPeer; 29 class QuicSentPacketManagerPeer;
30 } // namespace test 30 } // namespace test
31 31
32 class QuicClock; 32 class QuicClock;
33 class QuicConfig; 33 class QuicConfig;
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 // Records bandwidth from server to client in normal operation, over periods 393 // Records bandwidth from server to client in normal operation, over periods
394 // of time with no loss events. 394 // of time with no loss events.
395 QuicSustainedBandwidthRecorder sustained_bandwidth_recorder_; 395 QuicSustainedBandwidthRecorder sustained_bandwidth_recorder_;
396 396
397 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManager); 397 DISALLOW_COPY_AND_ASSIGN(QuicSentPacketManager);
398 }; 398 };
399 399
400 } // namespace net 400 } // namespace net
401 401
402 #endif // NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_ 402 #endif // NET_QUIC_QUIC_SENT_PACKET_MANAGER_H_
OLDNEW
« no previous file with comments | « net/quic/core/quic_sent_entropy_manager_test.cc ('k') | net/quic/core/quic_sent_packet_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698