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

Unified Diff: chrome/browser/io_thread_unittest.cc

Issue 2236973002: Landing Recent QUIC changes until 4AM, Aug 7, 2016 UTC-4 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: flip quic_sequencer_buffer_retire_block_in_time to true 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 f7899766856fa018cc46d3dc6b67b1e837a0369d..f0301b2853254ac959cd2a64520f5e25e56cfa67 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