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

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

Issue 1897033002: Reland 'Convert //net and //chromecast to std::unordered_*' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix TestDownloadRequestHandler Created 4 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
« no previous file with comments | « net/tools/quic/quic_in_memory_cache.h ('k') | net/tools/quic/quic_simple_server_session.h » ('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 server specific QuicSession subclass. 5 // A server specific QuicSession subclass.
6 6
7 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ 7 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_
8 #define NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ 8 #define NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_
9 9
10 #include <stdint.h> 10 #include <stdint.h>
11 11
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/containers/hash_tables.h"
17 #include "base/macros.h" 16 #include "base/macros.h"
18 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
19 #include "net/quic/crypto/quic_compressed_certs_cache.h" 18 #include "net/quic/crypto/quic_compressed_certs_cache.h"
20 #include "net/quic/quic_crypto_server_stream.h" 19 #include "net/quic/quic_crypto_server_stream.h"
21 #include "net/quic/quic_protocol.h" 20 #include "net/quic/quic_protocol.h"
22 #include "net/quic/quic_spdy_session.h" 21 #include "net/quic/quic_spdy_session.h"
23 22
24 namespace net { 23 namespace net {
25 24
26 class QuicBlockedWriterInterface; 25 class QuicBlockedWriterInterface;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // Set during handshake. If true, resources in x-associated-content and link 151 // Set during handshake. If true, resources in x-associated-content and link
153 // headers will be pushed. see: go/gfe_server_push. 152 // headers will be pushed. see: go/gfe_server_push.
154 bool server_push_enabled_; 153 bool server_push_enabled_;
155 154
156 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); 155 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase);
157 }; 156 };
158 157
159 } // namespace net 158 } // namespace net
160 159
161 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ 160 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_
OLDNEW
« no previous file with comments | « net/tools/quic/quic_in_memory_cache.h ('k') | net/tools/quic/quic_simple_server_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698