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

Side by Side Diff: net/tools/quic/quic_time_wait_list_manager.h

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/spdy_utils.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 // Handles packets for guids in time wait state by discarding the packet and 5 // Handles packets for guids in time wait state by discarding the packet and
6 // sending the clients a public reset packet with exponential backoff. 6 // sending the clients a public reset packet with exponential backoff.
7 7
8 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 8 #ifndef NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
9 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 9 #define NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
10 10
11 #include <deque> 11 #include <deque>
12 12
13 #include "base/hash_tables.h" 13 #include "base/hash_tables.h"
14 #include "base/string_piece.h" 14 #include "base/strings/string_piece.h"
15 #include "net/quic/quic_blocked_writer_interface.h" 15 #include "net/quic/quic_blocked_writer_interface.h"
16 #include "net/quic/quic_framer.h" 16 #include "net/quic/quic_framer.h"
17 #include "net/quic/quic_protocol.h" 17 #include "net/quic/quic_protocol.h"
18 #include "net/tools/flip_server/epoll_server.h" 18 #include "net/tools/flip_server/epoll_server.h"
19 #include "net/tools/quic/quic_epoll_clock.h" 19 #include "net/tools/quic/quic_epoll_clock.h"
20 #include "net/tools/quic/quic_packet_writer.h" 20 #include "net/tools/quic/quic_packet_writer.h"
21 21
22 namespace net { 22 namespace net {
23 namespace tools { 23 namespace tools {
24 24
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 // on sendmsg. 173 // on sendmsg.
174 bool is_write_blocked_; 174 bool is_write_blocked_;
175 175
176 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager); 176 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager);
177 }; 177 };
178 178
179 } // namespace tools 179 } // namespace tools
180 } // namespace net 180 } // namespace net
181 181
182 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 182 #endif // NET_TOOLS_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream.h ('k') | net/tools/quic/spdy_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698