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

Side by Side Diff: net/tools/quic/quic_time_wait_list_manager.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
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 // Handles packets for connection_ids in time wait state by discarding the 5 // Handles packets for connection_ids in time wait state by discarding the
6 // packet and sending the clients a public reset packet with exponential 6 // packet and sending the clients a public reset packet with exponential
7 // backoff. 7 // backoff.
8 8
9 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 9 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
10 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 10 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
11 11
12 #include <stddef.h>
13
12 #include <deque> 14 #include <deque>
13 15
14 #include "base/basictypes.h" 16 #include "base/macros.h"
15 #include "net/base/linked_hash_map.h" 17 #include "net/base/linked_hash_map.h"
16 #include "net/quic/quic_blocked_writer_interface.h" 18 #include "net/quic/quic_blocked_writer_interface.h"
17 #include "net/quic/quic_connection.h" 19 #include "net/quic/quic_connection.h"
18 #include "net/quic/quic_framer.h" 20 #include "net/quic/quic_framer.h"
19 #include "net/quic/quic_packet_writer.h" 21 #include "net/quic/quic_packet_writer.h"
20 #include "net/quic/quic_protocol.h" 22 #include "net/quic/quic_protocol.h"
21 23
22 namespace net { 24 namespace net {
23 namespace tools { 25 namespace tools {
24 26
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 // Interface that manages blocked writers. 184 // Interface that manages blocked writers.
183 QuicServerSessionVisitor* visitor_; 185 QuicServerSessionVisitor* visitor_;
184 186
185 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager); 187 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager);
186 }; 188 };
187 189
188 } // namespace tools 190 } // namespace tools
189 } // namespace net 191 } // namespace net
190 192
191 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 193 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698