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_CORE_QUIC_CRYPTO_STREAM_H_ |
6 #define NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 6 #define NET_QUIC_CORE_QUIC_CRYPTO_STREAM_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/quic/core/crypto/crypto_framer.h" | 12 #include "net/quic/core/crypto/crypto_framer.h" |
13 #include "net/quic/core/crypto/crypto_utils.h" | 13 #include "net/quic/core/crypto/crypto_utils.h" |
14 #include "net/quic/core/quic_config.h" | 14 #include "net/quic/core/quic_config.h" |
15 #include "net/quic/core/quic_packets.h" | 15 #include "net/quic/core/quic_packets.h" |
16 #include "net/quic/core/quic_stream.h" | 16 #include "net/quic/core/quic_stream.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 scoped_refptr<QuicCryptoNegotiatedParameters> crypto_negotiated_params_; | 84 scoped_refptr<QuicCryptoNegotiatedParameters> crypto_negotiated_params_; |
85 | 85 |
86 private: | 86 private: |
87 CryptoFramer crypto_framer_; | 87 CryptoFramer crypto_framer_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); | 89 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); |
90 }; | 90 }; |
91 | 91 |
92 } // namespace net | 92 } // namespace net |
93 | 93 |
94 #endif // NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 94 #endif // NET_QUIC_CORE_QUIC_CRYPTO_STREAM_H_ |
OLD | NEW |