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

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

Issue 2531373002: net: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase on top of master branch 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/proof_source.h ('k') | net/quic/core/crypto/quic_server_info.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 #ifndef NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ 5 #ifndef NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_
6 #define NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ 6 #define NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 20 matching lines...) Expand all
31 #include "net/quic/core/quic_time.h" 31 #include "net/quic/core/quic_time.h"
32 #include "net/quic/platform/api/quic_socket_address.h" 32 #include "net/quic/platform/api/quic_socket_address.h"
33 33
34 namespace net { 34 namespace net {
35 35
36 class CryptoHandshakeMessage; 36 class CryptoHandshakeMessage;
37 class EphemeralKeySource; 37 class EphemeralKeySource;
38 class KeyExchange; 38 class KeyExchange;
39 class ProofSource; 39 class ProofSource;
40 class QuicClock; 40 class QuicClock;
41 class QuicDecrypter;
42 class QuicEncrypter;
43 class QuicRandom; 41 class QuicRandom;
44 class QuicServerConfigProtobuf; 42 class QuicServerConfigProtobuf;
45 struct QuicSignedServerConfig; 43 struct QuicSignedServerConfig;
46 44
47 // ClientHelloInfo contains information about a client hello message that is 45 // ClientHelloInfo contains information about a client hello message that is
48 // only kept for as long as it's being processed. 46 // only kept for as long as it's being processed.
49 struct ClientHelloInfo { 47 struct ClientHelloInfo {
50 ClientHelloInfo(const QuicIpAddress& in_client_ip, QuicWallTime in_now); 48 ClientHelloInfo(const QuicIpAddress& in_client_ip, QuicWallTime in_now);
51 ClientHelloInfo(const ClientHelloInfo& other); 49 ClientHelloInfo(const ClientHelloInfo& other);
52 ~ClientHelloInfo(); 50 ~ClientHelloInfo();
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 bool send_expect_ct_header; 806 bool send_expect_ct_header;
809 807
810 private: 808 private:
811 friend class base::RefCounted<QuicSignedServerConfig>; 809 friend class base::RefCounted<QuicSignedServerConfig>;
812 virtual ~QuicSignedServerConfig(); 810 virtual ~QuicSignedServerConfig();
813 }; 811 };
814 812
815 } // namespace net 813 } // namespace net
816 814
817 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ 815 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_
OLDNEW
« no previous file with comments | « net/quic/core/crypto/proof_source.h ('k') | net/quic/core/crypto/quic_server_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698