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

Unified Diff: net/quic/crypto/crypto_server_test.cc

Issue 15937012: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small bug fixes 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
Index: net/quic/crypto/crypto_server_test.cc
diff --git a/net/quic/crypto/crypto_server_test.cc b/net/quic/crypto/crypto_server_test.cc
index 7ab0efef3009a4c558db5d7668916c43ef71aa22..2d5c9f4d2b0b02ffe6225675424bc17cb6ee3605 100644
--- a/net/quic/crypto/crypto_server_test.cc
+++ b/net/quic/crypto/crypto_server_test.cc
@@ -17,14 +17,15 @@ class CryptoServerTest : public ::testing::Test {
public:
CryptoServerTest()
: rand_(QuicRandom::GetInstance()),
- config_(QuicCryptoServerConfig::TESTING),
+ config_(QuicCryptoServerConfig::TESTING, rand_),
addr_(ParseIPLiteralToNumber("192.0.2.33", &ip_) ?
ip_ : IPAddressNumber(), 1) {
}
virtual void SetUp() {
scoped_ptr<CryptoHandshakeMessage> msg(
- config_.AddDefaultConfig(rand_, &clock_, 0));
+ config_.AddDefaultConfig(rand_, &clock_,
+ QuicCryptoServerConfig::ConfigOptions()));
}
void ShouldSucceed(const CryptoHandshakeMessage& message) {

Powered by Google App Engine
This is Rietveld 408576698