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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 2109803002: Change a number of SPDY unittests from http to https. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/spdy/spdy_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index ca5592c9f5f9e9ff068012b1c6f1a00c77035a29..5ff57e89ac8e578578d0c3c3989daaa3005b4edc 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -356,7 +356,6 @@ SpdySessionDependencies::SpdySessionDependencies(
enable_priority_dependencies(true),
enable_spdy31(true),
enable_quic(false),
- enable_alternative_service_for_insecure_origins(true),
protocol(protocol),
session_max_recv_window_size(
SpdySession::GetDefaultInitialWindowSize(protocol)),
@@ -418,8 +417,6 @@ HttpNetworkSession::Params SpdySessionDependencies::CreateSessionParams(
session_deps->enable_priority_dependencies;
params.enable_spdy31 = session_deps->enable_spdy31;
params.enable_quic = session_deps->enable_quic;
- params.enable_alternative_service_for_insecure_origins =
- session_deps->enable_alternative_service_for_insecure_origins;
params.spdy_default_protocol = session_deps->protocol;
params.spdy_session_max_recv_window_size =
session_deps->session_max_recv_window_size;
@@ -684,7 +681,7 @@ SpdyTestUtil::SpdyTestUtil(NextProto protocol, bool dependency_priorities)
headerless_spdy_framer_(spdy_version_),
request_spdy_framer_(spdy_version_),
response_spdy_framer_(spdy_version_),
- default_url_(GURL(kDefaultURL)),
+ default_url_(GURL(kDefaultUrl)),
dependency_priorities_(dependency_priorities) {
DCHECK(next_proto_is_spdy(protocol)) << "Invalid protocol: " << protocol;
}
« net/spdy/spdy_network_transaction_unittest.cc ('K') | « net/spdy/spdy_test_util_common.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698