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

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

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 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_id_test.cc ('k') | net/quic/core/quic_server_session_base.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 server specific QuicSession subclass. 5 // A server specific QuicSession subclass.
6 6
7 #ifndef NET_QUIC_QUIC_SERVER_SESSION_BASE_H_ 7 #ifndef NET_QUIC_QUIC_SERVER_SESSION_BASE_H_
8 #define NET_QUIC_QUIC_SERVER_SESSION_BASE_H_ 8 #define NET_QUIC_QUIC_SERVER_SESSION_BASE_H_
9 9
10 #include <stdint.h> 10 #include <stdint.h>
11 11
12 #include <cstdint> 12 #include <cstdint>
13 #include <memory> 13 #include <memory>
14 #include <set> 14 #include <set>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "net/quic/crypto/quic_compressed_certs_cache.h" 19 #include "net/quic/core/crypto/quic_compressed_certs_cache.h"
20 #include "net/quic/quic_crypto_server_stream.h" 20 #include "net/quic/core/quic_crypto_server_stream.h"
21 #include "net/quic/quic_protocol.h" 21 #include "net/quic/core/quic_protocol.h"
22 #include "net/quic/quic_spdy_session.h" 22 #include "net/quic/core/quic_spdy_session.h"
23 23
24 namespace net { 24 namespace net {
25 25
26 class QuicBlockedWriterInterface; 26 class QuicBlockedWriterInterface;
27 class QuicConfig; 27 class QuicConfig;
28 class QuicConnection; 28 class QuicConnection;
29 class QuicCryptoServerConfig; 29 class QuicCryptoServerConfig;
30 class ReliableQuicStream; 30 class ReliableQuicStream;
31 31
32 namespace test { 32 namespace test {
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 // Set during handshake. If true, resources in x-associated-content and link 180 // Set during handshake. If true, resources in x-associated-content and link
181 // headers will be pushed. see: go/gfe_server_push. 181 // headers will be pushed. see: go/gfe_server_push.
182 bool server_push_enabled_; 182 bool server_push_enabled_;
183 183
184 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); 184 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase);
185 }; 185 };
186 186
187 } // namespace net 187 } // namespace net
188 188
189 #endif // NET_QUIC_QUIC_SERVER_SESSION_BASE_H_ 189 #endif // NET_QUIC_QUIC_SERVER_SESSION_BASE_H_
OLDNEW
« no previous file with comments | « net/quic/core/quic_server_id_test.cc ('k') | net/quic/core/quic_server_session_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698