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_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/base/net_export.h" |
19 #include "net/quic/core/crypto/quic_compressed_certs_cache.h" | 20 #include "net/quic/core/crypto/quic_compressed_certs_cache.h" |
20 #include "net/quic/core/quic_crypto_server_stream.h" | 21 #include "net/quic/core/quic_crypto_server_stream.h" |
21 #include "net/quic/core/quic_protocol.h" | 22 #include "net/quic/core/quic_protocol.h" |
22 #include "net/quic/core/quic_spdy_session.h" | 23 #include "net/quic/core/quic_spdy_session.h" |
23 | 24 |
24 namespace net { | 25 namespace net { |
25 | 26 |
26 class QuicBlockedWriterInterface; | 27 class QuicBlockedWriterInterface; |
27 class QuicConfig; | 28 class QuicConfig; |
28 class QuicConnection; | 29 class QuicConnection; |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 // should go away once we fix http://b//27897982 | 159 // should go away once we fix http://b//27897982 |
159 int32_t BandwidthToCachedParameterBytesPerSecond( | 160 int32_t BandwidthToCachedParameterBytesPerSecond( |
160 const QuicBandwidth& bandwidth); | 161 const QuicBandwidth& bandwidth); |
161 | 162 |
162 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); | 163 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); |
163 }; | 164 }; |
164 | 165 |
165 } // namespace net | 166 } // namespace net |
166 | 167 |
167 #endif // NET_QUIC_QUIC_SERVER_SESSION_BASE_H_ | 168 #endif // NET_QUIC_QUIC_SERVER_SESSION_BASE_H_ |
OLD | NEW |