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 #ifndef NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 5 #ifndef NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
6 #define NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 6 #define NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
7 | 7 |
| 8 #include "base/basictypes.h" |
8 #include "net/quic/crypto/crypto_framer.h" | 9 #include "net/quic/crypto/crypto_framer.h" |
9 #include "net/quic/crypto/crypto_utils.h" | 10 #include "net/quic/crypto/crypto_utils.h" |
10 #include "net/quic/quic_config.h" | 11 #include "net/quic/quic_config.h" |
11 #include "net/quic/quic_protocol.h" | 12 #include "net/quic/quic_protocol.h" |
12 #include "net/quic/reliable_quic_stream.h" | 13 #include "net/quic/reliable_quic_stream.h" |
13 | 14 |
14 namespace net { | 15 namespace net { |
15 | 16 |
16 class CryptoHandshakeMessage; | 17 class CryptoHandshakeMessage; |
17 class QuicSession; | 18 class QuicSession; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 59 |
59 private: | 60 private: |
60 CryptoFramer crypto_framer_; | 61 CryptoFramer crypto_framer_; |
61 | 62 |
62 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); | 63 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); |
63 }; | 64 }; |
64 | 65 |
65 } // namespace net | 66 } // namespace net |
66 | 67 |
67 #endif // NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 68 #endif // NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
OLD | NEW |