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

Side by Side Diff: net/tools/quic/quic_epoll_connection_helper.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/tools/quic/quic_epoll_clock.h ('k') | net/tools/quic/quic_epoll_connection_helper.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 // The Google-specific helper for QuicConnection which uses 5 // The Google-specific helper for QuicConnection which uses
6 // EpollAlarm for alarms, and used an int fd_ for writing data. 6 // EpollAlarm for alarms, and used an int fd_ for writing data.
7 7
8 #ifndef NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_ 8 #ifndef NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
9 #define NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_ 9 #define NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
10 10
11 #include <sys/types.h> 11 #include <sys/types.h>
12 #include <set> 12 #include <set>
13 13
14 #include "base/macros.h"
14 #include "net/quic/quic_connection.h" 15 #include "net/quic/quic_connection.h"
15 #include "net/quic/quic_packet_writer.h" 16 #include "net/quic/quic_packet_writer.h"
16 #include "net/quic/quic_protocol.h" 17 #include "net/quic/quic_protocol.h"
17 #include "net/quic/quic_time.h" 18 #include "net/quic/quic_time.h"
18 #include "net/tools/quic/quic_default_packet_writer.h" 19 #include "net/tools/quic/quic_default_packet_writer.h"
19 #include "net/tools/quic/quic_epoll_clock.h" 20 #include "net/tools/quic/quic_epoll_clock.h"
20 21
21 namespace net { 22 namespace net {
22 23
23 class EpollServer; 24 class EpollServer;
(...skipping 26 matching lines...) Expand all
50 const QuicEpollClock clock_; 51 const QuicEpollClock clock_;
51 QuicRandom* random_generator_; 52 QuicRandom* random_generator_;
52 53
53 DISALLOW_COPY_AND_ASSIGN(QuicEpollConnectionHelper); 54 DISALLOW_COPY_AND_ASSIGN(QuicEpollConnectionHelper);
54 }; 55 };
55 56
56 } // namespace tools 57 } // namespace tools
57 } // namespace net 58 } // namespace net
58 59
59 #endif // NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_ 60 #endif // NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_epoll_clock.h ('k') | net/tools/quic/quic_epoll_connection_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698