Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2140)

Unified Diff: net/http/http_stream_factory_impl_request.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698