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

Unified Diff: chrome/browser/io_thread_unittest.cc

Issue 987123002: Advertise HTTP/2 support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/domain_reliability/util.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 143ac484a29ffd7d52d3523b87a6446f0b9fcc23..33bde3d841801dc4491ac268c3b7b064fa933008 100644
--- a/chrome/browser/io_thread_unittest.cc
+++ b/chrome/browser/io_thread_unittest.cc
@@ -101,11 +101,10 @@ TEST_F(IOThreadTest, SpdyFieldTrialSpdy31Enabled) {
TEST_F(IOThreadTest, SpdyFieldTrialSpdy4Enabled) {
bool use_alternate_protocols = false;
IOThreadPeer::ConfigureSpdyFromTrial("Spdy4Enabled", &globals_);
- EXPECT_THAT(globals_.next_protos,
- ElementsAre(net::kProtoHTTP11,
- net::kProtoQUIC1SPDY3,
- net::kProtoSPDY31,
- net::kProtoSPDY4_14));
+ EXPECT_THAT(
+ globals_.next_protos,
+ ElementsAre(net::kProtoHTTP11, net::kProtoQUIC1SPDY3, net::kProtoSPDY31,
+ net::kProtoSPDY4_14, net::kProtoSPDY4));
globals_.use_alternate_protocols.CopyToIfSet(&use_alternate_protocols);
EXPECT_TRUE(use_alternate_protocols);
}
« no previous file with comments | « no previous file | components/domain_reliability/util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698