Remove default parameters from GroupId, SpdySessionKey, and QuicSessionKey.
Bug: 1012268, 963480
Change-Id: I3f2d72fdc6748088e6af2da0f4d31c70a89ad891
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1849992
Commit-Queue: Katharine Daly <[email protected]>
Reviewed-by: Matt Menke <[email protected]>
Cr-Commit-Position: refs/heads/master@{#705969}
diff --git a/net/http/bidirectional_stream_unittest.cc b/net/http/bidirectional_stream_unittest.cc
index 34136bc..0e8e18c3c 100644
--- a/net/http/bidirectional_stream_unittest.cc
+++ b/net/http/bidirectional_stream_unittest.cc
@@ -433,7 +433,8 @@
http_session_ = SpdySessionDependencies::SpdyCreateSession(&session_deps_);
SpdySessionKey key(host_port_pair_, ProxyServer::Direct(),
PRIVACY_MODE_DISABLED,
- SpdySessionKey::IsProxySession::kFalse, socket_tag);
+ SpdySessionKey::IsProxySession::kFalse, socket_tag,
+ NetworkIsolationKey(), false /* disable_secure_dns */);
session_ = CreateSpdySession(http_session_.get(), key, net_log_.bound());
}
@@ -627,7 +628,8 @@
http_session_ = SpdySessionDependencies::SpdyCreateSession(&session_deps_);
SpdySessionKey key(host_port_pair_, ProxyServer::Direct(),
PRIVACY_MODE_DISABLED,
- SpdySessionKey::IsProxySession::kFalse, SocketTag());
+ SpdySessionKey::IsProxySession::kFalse, SocketTag(),
+ NetworkIsolationKey(), false /* disable_secure_dns */);
std::unique_ptr<BidirectionalStreamRequestInfo> request_info(
new BidirectionalStreamRequestInfo);
request_info->method = "GET";