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

Side by Side Diff: net/quic/quic_client_session_base.h

Issue 355573007: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added NET_EXPORT_PRIVATE for ContainsQuicTag Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/crypto/quic_crypto_server_config.cc ('k') | net/quic/quic_client_session_base.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_QUIC_CLIENT_SESSION_BASE_H_ 5 #ifndef NET_QUIC_QUIC_CLIENT_SESSION_BASE_H_
6 #define NET_QUIC_QUIC_CLIENT_SESSION_BASE_H_ 6 #define NET_QUIC_QUIC_CLIENT_SESSION_BASE_H_
7 7
8 #include "net/quic/quic_crypto_client_stream.h" 8 #include "net/quic/quic_crypto_client_stream.h"
9 #include "net/quic/quic_session.h" 9 #include "net/quic/quic_session.h"
10 10
(...skipping 14 matching lines...) Expand all
25 // from the server). 25 // from the server).
26 virtual void OnProofValid( 26 virtual void OnProofValid(
27 const QuicCryptoClientConfig::CachedState& cached) = 0; 27 const QuicCryptoClientConfig::CachedState& cached) = 0;
28 28
29 // Called when proof verification details become available, either because 29 // Called when proof verification details become available, either because
30 // proof verification is complete, or when cached details are used. This 30 // proof verification is complete, or when cached details are used. This
31 // will only be called for secure QUIC connections. 31 // will only be called for secure QUIC connections.
32 virtual void OnProofVerifyDetailsAvailable( 32 virtual void OnProofVerifyDetailsAvailable(
33 const ProofVerifyDetails& verify_details) = 0; 33 const ProofVerifyDetails& verify_details) = 0;
34 34
35 // Override base class to set FEC policy before any data is sent by client.
36 virtual void OnCryptoHandshakeEvent(CryptoHandshakeEvent event) OVERRIDE;
37
35 private: 38 private:
36 DISALLOW_COPY_AND_ASSIGN(QuicClientSessionBase); 39 DISALLOW_COPY_AND_ASSIGN(QuicClientSessionBase);
37 }; 40 };
38 41
39 } // namespace net 42 } // namespace net
40 43
41 #endif // NET_QUIC_QUIC_CLIENT_SESSION_BASE_H_ 44 #endif // NET_QUIC_QUIC_CLIENT_SESSION_BASE_H_
OLDNEW
« no previous file with comments | « net/quic/crypto/quic_crypto_server_config.cc ('k') | net/quic/quic_client_session_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698