| Index: net/http/http_stream_factory_impl_request.h
|
| diff --git a/net/http/http_stream_factory_impl_request.h b/net/http/http_stream_factory_impl_request.h
|
| index 80948fd3d2308038d12fb37489f072e53a9f75f8..2d85218e00ef8f309347dcfef18d584398c02ff2 100644
|
| --- a/net/http/http_stream_factory_impl_request.h
|
| +++ b/net/http/http_stream_factory_impl_request.h
|
| @@ -52,7 +52,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
|
| HttpStreamRequest::Delegate* delegate,
|
| WebSocketHandshakeStreamBase::CreateHelper*
|
| websocket_handshake_stream_create_helper,
|
| - const BoundNetLog& net_log,
|
| + const NetLogWithSource& net_log,
|
| StreamType stream_type);
|
|
|
| ~Request() override;
|
| @@ -60,7 +60,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
|
| // The GURL from the HttpRequestInfo the started the Request.
|
| const GURL& url() const { return url_; }
|
|
|
| - const BoundNetLog& net_log() const { return net_log_; }
|
| + const NetLogWithSource& net_log() const { return net_log_; }
|
|
|
| // Called when the |helper_| determines the appropriate |spdy_session_key|
|
| // for the Request. Note that this does not mean that SPDY is necessarily
|
| @@ -137,7 +137,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest {
|
| WebSocketHandshakeStreamBase::CreateHelper* const
|
| websocket_handshake_stream_create_helper_;
|
| HttpStreamRequest::Delegate* const delegate_;
|
| - const BoundNetLog net_log_;
|
| + const NetLogWithSource net_log_;
|
|
|
| std::unique_ptr<const SpdySessionKey> spdy_session_key_;
|
|
|
|
|