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

Unified Diff: net/tools/quic/stateless_rejector_test.cc

Issue 2236463004: Rename QuicSupportedVersions to QuicAllSupportedVersions. Add QuicCurrentSupportedVersions which re… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@129437595
Patch Set: update more files outside net/ Created 4 years, 4 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 | « net/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/stateless_rejector_test.cc
diff --git a/net/tools/quic/stateless_rejector_test.cc b/net/tools/quic/stateless_rejector_test.cc
index a2d890845dabe34f9b7ecd325f6d3d34c3aa8d53..95cbb924d199d6f8ec7faada241964c5f3354111 100644
--- a/net/tools/quic/stateless_rejector_test.cc
+++ b/net/tools/quic/stateless_rejector_test.cc
@@ -42,7 +42,7 @@ vector<TestParams> GetTestParams() {
vector<TestParams> params;
for (FlagsMode flags :
{ENABLED, STATELESS_DISABLED, CHEAP_DISABLED, BOTH_DISABLED}) {
- for (QuicVersion version : QuicSupportedVersions()) {
+ for (QuicVersion version : AllSupportedVersions()) {
TestParams param;
param.version = version;
param.flags = flags;
@@ -63,7 +63,7 @@ class StatelessRejectorTest : public ::testing::TestWithParam<TestParams> {
compressed_certs_cache_(
QuicCompressedCertsCache::kQuicCompressedCertsCacheSize),
rejector_(GetParam().version,
- QuicSupportedVersions(),
+ AllSupportedVersions(),
&config_,
&compressed_certs_cache_,
&clock_,
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698