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

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

Issue 2547583002: Landing Recent QUIC changes until Fri Nov 18 23:21:04 2016 +0000 (Closed)
Patch Set: Remove explicit HTTP/2 enum usage Created 4 years 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
« no previous file with comments | « net/quic/core/crypto/quic_crypto_client_config.h ('k') | net/quic/core/crypto/quic_decrypter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
28 #include "net/quic/core/crypto/key_exchange.h" 28 #include "net/quic/core/crypto/key_exchange.h"
29 #include "net/quic/core/crypto/p256_key_exchange.h" 29 #include "net/quic/core/crypto/p256_key_exchange.h"
30 #include "net/quic/core/crypto/proof_source.h" 30 #include "net/quic/core/crypto/proof_source.h"
31 #include "net/quic/core/crypto/quic_decrypter.h" 31 #include "net/quic/core/crypto/quic_decrypter.h"
32 #include "net/quic/core/crypto/quic_encrypter.h" 32 #include "net/quic/core/crypto/quic_encrypter.h"
33 #include "net/quic/core/crypto/quic_random.h" 33 #include "net/quic/core/crypto/quic_random.h"
34 #include "net/quic/core/proto/source_address_token.pb.h" 34 #include "net/quic/core/proto/source_address_token.pb.h"
35 #include "net/quic/core/quic_bug_tracker.h" 35 #include "net/quic/core/quic_bug_tracker.h"
36 #include "net/quic/core/quic_clock.h" 36 #include "net/quic/core/quic_clock.h"
37 #include "net/quic/core/quic_flags.h" 37 #include "net/quic/core/quic_flags.h"
38 #include "net/quic/core/quic_protocol.h" 38 #include "net/quic/core/quic_packets.h"
39 #include "net/quic/core/quic_socket_address_coder.h" 39 #include "net/quic/core/quic_socket_address_coder.h"
40 #include "net/quic/core/quic_utils.h" 40 #include "net/quic/core/quic_utils.h"
41 41
42 using base::StringPiece; 42 using base::StringPiece;
43 using crypto::SecureHash; 43 using crypto::SecureHash;
44 using std::map; 44 using std::map;
45 using std::sort; 45 using std::sort;
46 using std::string; 46 using std::string;
47 using std::vector; 47 using std::vector;
48 48
(...skipping 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after
2011 source_address_token_boxer(nullptr) {} 2011 source_address_token_boxer(nullptr) {}
2012 2012
2013 QuicCryptoServerConfig::Config::~Config() { 2013 QuicCryptoServerConfig::Config::~Config() {
2014 } 2014 }
2015 2015
2016 QuicSignedServerConfig::QuicSignedServerConfig() 2016 QuicSignedServerConfig::QuicSignedServerConfig()
2017 : send_expect_ct_header(false) {} 2017 : send_expect_ct_header(false) {}
2018 QuicSignedServerConfig::~QuicSignedServerConfig() {} 2018 QuicSignedServerConfig::~QuicSignedServerConfig() {}
2019 2019
2020 } // namespace net 2020 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/crypto/quic_crypto_client_config.h ('k') | net/quic/core/crypto/quic_decrypter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698