OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/core/crypto/quic_crypto_server_config.h" | 5 #include "net/quic/core/crypto/quic_crypto_server_config.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <memory> | 10 #include <memory> |
(...skipping 2020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2031 } | 2031 } |
2032 | 2032 |
2033 QuicCryptoServerConfig::Config::Config() | 2033 QuicCryptoServerConfig::Config::Config() |
2034 : channel_id_enabled(false), | 2034 : channel_id_enabled(false), |
2035 is_primary(false), | 2035 is_primary(false), |
2036 primary_time(QuicWallTime::Zero()), | 2036 primary_time(QuicWallTime::Zero()), |
2037 priority(0), | 2037 priority(0), |
2038 source_address_token_boxer(nullptr) {} | 2038 source_address_token_boxer(nullptr) {} |
2039 | 2039 |
2040 QuicCryptoServerConfig::Config::~Config() { | 2040 QuicCryptoServerConfig::Config::~Config() { |
2041 STLDeleteElements(&key_exchanges); | 2041 base::STLDeleteElements(&key_exchanges); |
2042 } | 2042 } |
2043 | 2043 |
2044 QuicCryptoProof::QuicCryptoProof() {} | 2044 QuicCryptoProof::QuicCryptoProof() {} |
2045 QuicCryptoProof::~QuicCryptoProof() {} | 2045 QuicCryptoProof::~QuicCryptoProof() {} |
2046 } // namespace net | 2046 } // namespace net |
OLD | NEW |