Chromium Code Reviews| 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 8324d6141dba002778d31bca1402a273f4dca219..45602a964c28459fc28ee0bc6934421b7b47f4ae 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 OnBidirectionalStreamJobReady(const SSLConfig& used_ssl_config, |
| + const ProxyInfo& used_proxy_info, |
| + BidirectionalStreamJob* stream) override {} |
|
mef
2015/12/21 23:21:31
stream -> stream_job?
xunjieli
2015/12/22 02:58:49
Done.
|
| + |
| void OnWebSocketHandshakeStreamReady( |
| const SSLConfig& used_ssl_config, |
| const ProxyInfo& used_proxy_info, |
| @@ -72,7 +76,8 @@ TEST_P(HttpStreamFactoryImplRequestTest, SetPriority) { |
| DoNothingRequestDelegate request_delegate; |
| HttpStreamFactoryImpl::Request request( |
| - GURL(), factory, &request_delegate, NULL, BoundNetLog()); |
| + GURL(), factory, &request_delegate, NULL, BoundNetLog(), |
| + HttpStreamFactoryImpl::Request::HTTP_STREAM); |
| HttpStreamFactoryImpl::Job* job = |
| new HttpStreamFactoryImpl::Job(factory, |