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 <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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 // should go away once we fix http://b//27897982 | 143 // should go away once we fix http://b//27897982 |
145 int32_t BandwidthToCachedParameterBytesPerSecond( | 144 int32_t BandwidthToCachedParameterBytesPerSecond( |
146 const QuicBandwidth& bandwidth); | 145 const QuicBandwidth& bandwidth); |
147 | 146 |
148 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); | 147 DISALLOW_COPY_AND_ASSIGN(QuicServerSessionBase); |
149 }; | 148 }; |
150 | 149 |
151 } // namespace net | 150 } // namespace net |
152 | 151 |
153 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ | 152 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_BASE_H_ |
OLD | NEW |