| Index: net/http/http_stream_factory_impl.h
|
| diff --git a/net/http/http_stream_factory_impl.h b/net/http/http_stream_factory_impl.h
|
| index 19304667477d81c31460bdf6d466a8bb2ee5b0b0..5b66e45c68c8f4acda6b4b280e399573db5f0433 100644
|
| --- a/net/http/http_stream_factory_impl.h
|
| +++ b/net/http/http_stream_factory_impl.h
|
| @@ -44,7 +44,7 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HttpStreamRequest::Delegate* delegate,
|
| - const BoundNetLog& net_log) override;
|
| + const NetLogWithSource& net_log) override;
|
|
|
| HttpStreamRequest* RequestWebSocketHandshakeStream(
|
| const HttpRequestInfo& info,
|
| @@ -53,7 +53,7 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
|
| const SSLConfig& proxy_ssl_config,
|
| HttpStreamRequest::Delegate* delegate,
|
| WebSocketHandshakeStreamBase::CreateHelper* create_helper,
|
| - const BoundNetLog& net_log) override;
|
| + const NetLogWithSource& net_log) override;
|
|
|
| HttpStreamRequest* RequestBidirectionalStreamImpl(
|
| const HttpRequestInfo& info,
|
| @@ -61,7 +61,7 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
|
| const SSLConfig& server_ssl_config,
|
| const SSLConfig& proxy_ssl_config,
|
| HttpStreamRequest::Delegate* delegate,
|
| - const BoundNetLog& net_log) override;
|
| + const NetLogWithSource& net_log) override;
|
|
|
| void PreconnectStreams(int num_streams, const HttpRequestInfo& info) override;
|
| const HostMappingRules* GetHostMappingRules() const override;
|
| @@ -101,7 +101,7 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
|
| HttpStreamRequest::Delegate* delegate,
|
| WebSocketHandshakeStreamBase::CreateHelper* create_helper,
|
| HttpStreamRequest::StreamType stream_type,
|
| - const BoundNetLog& net_log);
|
| + const NetLogWithSource& net_log);
|
|
|
| // Called when a SpdySession is ready. It will find appropriate Requests and
|
| // fulfill them. |direct| indicates whether or not |spdy_session| uses a
|
| @@ -113,7 +113,7 @@ class NET_EXPORT_PRIVATE HttpStreamFactoryImpl : public HttpStreamFactory {
|
| bool was_alpn_negotiated,
|
| NextProto negotiated_protocol,
|
| bool using_spdy,
|
| - const BoundNetLog& net_log);
|
| + const NetLogWithSource& net_log);
|
|
|
| // Called when the Job detects that the endpoint indicated by the
|
| // Alternate-Protocol does not work. Lets the factory update
|
|
|