Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(809)

Side by Side Diff: net/quic/core/crypto/quic_crypto_server_config.cc

Issue 2229393003: net: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/quic/core/crypto/quic_crypto_client_config.cc ('k') | net/quic/core/crypto/quic_crypto_server_config_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698