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

Side by Side Diff: net/quic/quic_session.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/quic_server_id.cc ('k') | net/quic/quic_session.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 // A QuicSession, which demuxes a single connection to individual streams. 5 // A QuicSession, which demuxes a single connection to individual streams.
6 6
7 #ifndef NET_QUIC_QUIC_SESSION_H_ 7 #ifndef NET_QUIC_QUIC_SESSION_H_
8 #define NET_QUIC_QUIC_SESSION_H_ 8 #define NET_QUIC_QUIC_SESSION_H_
9 9
10 #include <stddef.h>
11
10 #include <map> 12 #include <map>
11 #include <string> 13 #include <string>
12 #include <vector> 14 #include <vector>
13 15
14 #include "base/compiler_specific.h" 16 #include "base/compiler_specific.h"
15 #include "base/containers/hash_tables.h" 17 #include "base/containers/hash_tables.h"
18 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h" 19 #include "base/memory/scoped_ptr.h"
17 #include "base/strings/string_piece.h" 20 #include "base/strings/string_piece.h"
18 #include "net/base/ip_endpoint.h" 21 #include "net/base/ip_endpoint.h"
19 #include "net/quic/quic_connection.h" 22 #include "net/quic/quic_connection.h"
20 #include "net/quic/quic_crypto_stream.h" 23 #include "net/quic/quic_crypto_stream.h"
21 #include "net/quic/quic_packet_creator.h" 24 #include "net/quic/quic_packet_creator.h"
22 #include "net/quic/quic_protocol.h" 25 #include "net/quic/quic_protocol.h"
23 #include "net/quic/quic_write_blocked_list.h" 26 #include "net/quic/quic_write_blocked_list.h"
24 #include "net/quic/reliable_quic_stream.h" 27 #include "net/quic/reliable_quic_stream.h"
25 28
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 369
367 // Used for connection-level flow control. 370 // Used for connection-level flow control.
368 QuicFlowController flow_controller_; 371 QuicFlowController flow_controller_;
369 372
370 DISALLOW_COPY_AND_ASSIGN(QuicSession); 373 DISALLOW_COPY_AND_ASSIGN(QuicSession);
371 }; 374 };
372 375
373 } // namespace net 376 } // namespace net
374 377
375 #endif // NET_QUIC_QUIC_SESSION_H_ 378 #endif // NET_QUIC_QUIC_SESSION_H_
OLDNEW
« no previous file with comments | « net/quic/quic_server_id.cc ('k') | net/quic/quic_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698