OLD | NEW |
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 <cstdint> |
12 #include <memory> | 13 #include <memory> |
13 #include <set> | 14 #include <set> |
14 #include <string> | 15 #include <string> |
15 #include <vector> | 16 #include <vector> |
16 | 17 |
17 #include "base/macros.h" | 18 #include "base/macros.h" |
18 #include "net/quic/crypto/quic_compressed_certs_cache.h" | 19 #include "net/quic/crypto/quic_compressed_certs_cache.h" |
19 #include "net/quic/quic_crypto_server_stream.h" | 20 #include "net/quic/quic_crypto_server_stream.h" |
20 #include "net/quic/quic_protocol.h" | 21 #include "net/quic/quic_protocol.h" |
21 #include "net/quic/quic_spdy_session.h" | 22 #include "net/quic/quic_spdy_session.h" |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 // Set during handshake. If true, resources in x-associated-content and link | 152 // Set during handshake. If true, resources in x-associated-content and link |
152 // headers will be pushed. see: go/gfe_server_push. | 153 // headers will be pushed. see: go/gfe_server_push. |
153 bool server_push_enabled_; | 154 bool server_push_enabled_; |
154 | 155 |
155 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); | 156 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); |
156 }; | 157 }; |
157 | 158 |
158 } // namespace net | 159 } // namespace net |
159 | 160 |
160 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ | 161 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ |
OLD | NEW |