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

Unified Diff: trunk/src/net/quic/crypto/crypto_handshake.h

Issue 15018013: Revert 198736 "Land Recent QUIC changes" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/src/net/quic/crypto/common_cert_set_test.cc ('k') | trunk/src/net/quic/crypto/crypto_handshake.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/net/quic/crypto/crypto_handshake.h
===================================================================
--- trunk/src/net/quic/crypto/crypto_handshake.h (revision 198763)
+++ trunk/src/net/quic/crypto/crypto_handshake.h (working copy)
@@ -18,7 +18,6 @@
namespace net {
-class CommonCertSet;
class KeyExchange;
class ProofVerifier;
class QuicClock;
@@ -135,9 +134,6 @@
scoped_ptr<QuicDecrypter> decrypter;
std::string server_config_id;
std::string server_nonce;
- // cached_certs contains the cached certificates that a client used when
- // sending a client hello.
- std::vector<std::string> cached_certs;
};
// QuicCryptoConfig contains common configuration between clients and servers.
@@ -164,8 +160,6 @@
// Authenticated encryption with associated data (AEAD) algorithms.
CryptoTagVector aead;
- scoped_ptr<CommonCertSet> common_cert_set_;
-
private:
DISALLOW_COPY_AND_ASSIGN(QuicCryptoConfig);
};
@@ -198,7 +192,7 @@
bool SetServerConfig(base::StringPiece scfg);
// SetProof stores a certificate chain and signature.
- void SetProof(const std::vector<std::string>& certs,
+ void SetProof(const std::vector<base::StringPiece>& certs,
base::StringPiece signature);
// SetProofValid records that the certificate chain and signature have been
@@ -243,7 +237,6 @@
// source-address token will be taken from it.
void FillInchoateClientHello(const std::string& server_hostname,
const CachedState* cached,
- QuicCryptoNegotiatedParameters* out_params,
CryptoHandshakeMessage* out) const;
// FillClientHello sets |out| to be a CHLO message based on the configuration
« no previous file with comments | « trunk/src/net/quic/crypto/common_cert_set_test.cc ('k') | trunk/src/net/quic/crypto/crypto_handshake.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698