Index: net/http/http_stream_factory_impl_request_unittest.cc |
diff --git a/net/http/http_stream_factory_impl_request_unittest.cc b/net/http/http_stream_factory_impl_request_unittest.cc |
index 7a5483155bff56cd067f8e1676ae3807ae747450..38047d75b28bd9b62495bf0421986a13a2842d4d 100644 |
--- a/net/http/http_stream_factory_impl_request_unittest.cc |
+++ b/net/http/http_stream_factory_impl_request_unittest.cc |
@@ -35,6 +35,10 @@ class DoNothingRequestDelegate : public HttpStreamRequest::Delegate { |
void OnStreamReady(const SSLConfig& used_ssl_config, |
const ProxyInfo& used_proxy_info, |
HttpStream* stream) override {} |
+ void OnBidirectionalStreamReady(const SSLConfig& used_ssl_config, |
+ const ProxyInfo& used_proxy_info, |
+ BidirectionalStream* stream) override {} |
+ |
void OnWebSocketHandshakeStreamReady( |
const SSLConfig& used_ssl_config, |
const ProxyInfo& used_proxy_info, |
@@ -70,8 +74,8 @@ TEST_P(HttpStreamFactoryImplRequestTest, SetPriority) { |
static_cast<HttpStreamFactoryImpl*>(session->http_stream_factory()); |
DoNothingRequestDelegate request_delegate; |
- HttpStreamFactoryImpl::Request request( |
- GURL(), factory, &request_delegate, NULL, BoundNetLog()); |
+ HttpStreamFactoryImpl::Request request(GURL(), factory, &request_delegate, |
+ NULL, BoundNetLog(), false); |
HttpStreamFactoryImpl::Job* job = |
new HttpStreamFactoryImpl::Job(factory, |