| 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 #include "net/quic/quic_crypto_stream.h" | 5 #include "net/quic/quic_crypto_stream.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/string_piece.h" | 9 #include "base/strings/string_piece.h" |
| 10 #include "net/quic/crypto/crypto_handshake.h" | 10 #include "net/quic/crypto/crypto_handshake.h" |
| 11 #include "net/quic/quic_connection.h" | 11 #include "net/quic/quic_connection.h" |
| 12 #include "net/quic/quic_session.h" | 12 #include "net/quic/quic_session.h" |
| 13 | 13 |
| 14 using std::string; | 14 using std::string; |
| 15 using base::StringPiece; | 15 using base::StringPiece; |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 | 18 |
| 19 QuicCryptoStream::QuicCryptoStream(QuicSession* session) | 19 QuicCryptoStream::QuicCryptoStream(QuicSession* session) |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 if (error_details) { | 179 if (error_details) { |
| 180 *error_details = "Bad KATO"; | 180 *error_details = "Bad KATO"; |
| 181 } | 181 } |
| 182 return error; | 182 return error; |
| 183 } | 183 } |
| 184 | 184 |
| 185 return QUIC_NO_ERROR; | 185 return QUIC_NO_ERROR; |
| 186 } | 186 } |
| 187 | 187 |
| 188 } // namespace net | 188 } // namespace net |
| OLD | NEW |