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

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

Issue 2740453006: Add QuicStringPiece which is actually StringPiece. (Closed)
Patch Set: fix compile error and rebase Created 3 years, 9 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
« no previous file with comments | « net/quic/core/quic_server_session_base_test.cc ('k') | net/quic/core/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_CORE_QUIC_SESSION_H_ 7 #ifndef NET_QUIC_CORE_QUIC_SESSION_H_
8 #define NET_QUIC_CORE_QUIC_SESSION_H_ 8 #define NET_QUIC_CORE_QUIC_SESSION_H_
9 9
10 #include <cstddef> 10 #include <cstddef>
11 #include <map> 11 #include <map>
12 #include <memory> 12 #include <memory>
13 #include <string> 13 #include <string>
14 #include <unordered_set> 14 #include <unordered_set>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/compiler_specific.h" 17 #include "base/compiler_specific.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/strings/string_piece.h"
20 #include "net/quic/core/quic_connection.h" 19 #include "net/quic/core/quic_connection.h"
21 #include "net/quic/core/quic_crypto_stream.h" 20 #include "net/quic/core/quic_crypto_stream.h"
22 #include "net/quic/core/quic_packet_creator.h" 21 #include "net/quic/core/quic_packet_creator.h"
23 #include "net/quic/core/quic_packets.h" 22 #include "net/quic/core/quic_packets.h"
24 #include "net/quic/core/quic_stream.h" 23 #include "net/quic/core/quic_stream.h"
25 #include "net/quic/core/quic_write_blocked_list.h" 24 #include "net/quic/core/quic_write_blocked_list.h"
26 #include "net/quic/platform/api/quic_containers.h" 25 #include "net/quic/platform/api/quic_containers.h"
27 #include "net/quic/platform/api/quic_export.h" 26 #include "net/quic/platform/api/quic_export.h"
28 #include "net/quic/platform/api/quic_socket_address.h" 27 #include "net/quic/platform/api/quic_socket_address.h"
29 28
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 440
442 // Latched value of gfe2_reloadable_flag_quic_flow_control_invariant. 441 // Latched value of gfe2_reloadable_flag_quic_flow_control_invariant.
443 const bool flow_control_invariant_; 442 const bool flow_control_invariant_;
444 443
445 DISALLOW_COPY_AND_ASSIGN(QuicSession); 444 DISALLOW_COPY_AND_ASSIGN(QuicSession);
446 }; 445 };
447 446
448 } // namespace net 447 } // namespace net
449 448
450 #endif // NET_QUIC_CORE_QUIC_SESSION_H_ 449 #endif // NET_QUIC_CORE_QUIC_SESSION_H_
OLDNEW
« no previous file with comments | « net/quic/core/quic_server_session_base_test.cc ('k') | net/quic/core/quic_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698