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

Unified Diff: chrome/browser/io_thread_unittest.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 | « no previous file | components/cronet/android/test/quic_test_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread_unittest.cc
diff --git a/chrome/browser/io_thread_unittest.cc b/chrome/browser/io_thread_unittest.cc
index 3b7c8972246e62aa93895eac2ee164245c9e2a51..94afc19b2dc7fb8aaae2516ca95618eeadc3bf97 100644
--- a/chrome/browser/io_thread_unittest.cc
+++ b/chrome/browser/io_thread_unittest.cc
@@ -348,13 +348,13 @@ TEST_F(ConfigureParamsFromFieldTrialsAndCommandLineTest,
QuicVersionFromCommandLine) {
command_line_.AppendSwitch("enable-quic");
std::string version =
- net::QuicVersionToString(net::QuicSupportedVersions().back());
+ net::QuicVersionToString(net::AllSupportedVersions().back());
command_line_.AppendSwitchASCII("quic-version", version);
ConfigureParamsFromFieldTrialsAndCommandLine();
net::QuicVersionVector supported_versions;
- supported_versions.push_back(net::QuicSupportedVersions().back());
+ supported_versions.push_back(net::AllSupportedVersions().back());
EXPECT_EQ(supported_versions, params_.quic_supported_versions);
}
« no previous file with comments | « no previous file | components/cronet/android/test/quic_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698