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

Unified Diff: net/http/http_server_properties_impl_unittest.cc

Issue 1411063004: Remove insecure QUIC support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enough! Created 5 years, 2 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/http/http_server_properties_impl_unittest.cc
diff --git a/net/http/http_server_properties_impl_unittest.cc b/net/http/http_server_properties_impl_unittest.cc
index c5735fec781292d90d6152d9fb0989010b5013a2..b5525768487cec72e967ee15a813b53765b99152 100644
--- a/net/http/http_server_properties_impl_unittest.cc
+++ b/net/http/http_server_properties_impl_unittest.cc
@@ -1196,7 +1196,7 @@ typedef HttpServerPropertiesImplTest QuicServerInfoServerPropertiesTest;
TEST_F(QuicServerInfoServerPropertiesTest, Initialize) {
HostPortPair google_server("www.google.com", 443);
- QuicServerId quic_server_id(google_server, true, PRIVACY_MODE_ENABLED);
+ QuicServerId quic_server_id(google_server, PRIVACY_MODE_ENABLED);
// Check empty map.
QuicServerInfoMap quic_server_info_map(QuicServerInfoMap::NO_AUTO_EVICT);
@@ -1214,7 +1214,7 @@ TEST_F(QuicServerInfoServerPropertiesTest, Initialize) {
TEST_F(QuicServerInfoServerPropertiesTest, SetQuicServerInfo) {
HostPortPair foo_server("foo", 80);
- QuicServerId quic_server_id(foo_server, true, PRIVACY_MODE_ENABLED);
+ QuicServerId quic_server_id(foo_server, PRIVACY_MODE_ENABLED);
EXPECT_EQ(0u, impl_.quic_server_info_map().size());
std::string quic_server_info1("quic_server_info1");
« no previous file with comments | « net/http/disk_cache_based_quic_server_info_unittest.cc ('k') | net/http/http_server_properties_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698