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

Unified Diff: net/http/http_stream_factory_impl_job.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_job.h
diff --git a/net/http/http_stream_factory_impl_job.h b/net/http/http_stream_factory_impl_job.h
index c5f5be9711012304306ebf5836256c1ed7dd3eba..d04cc51072dfb351f1ff84c1188b3aeddc51eb29 100644
--- a/net/http/http_stream_factory_impl_job.h
+++ b/net/http/http_stream_factory_impl_job.h
@@ -144,7 +144,7 @@ class HttpStreamFactoryImpl::Job {
// Remove session from the SpdySessionRequestMap.
virtual void RemoveRequestFromSpdySessionRequestMapForJob(Job* job) = 0;
- virtual const BoundNetLog* GetNetLog(Job* job) const = 0;
+ virtual const NetLogWithSource* GetNetLog(Job* job) const = 0;
virtual WebSocketHandshakeStreamBase::CreateHelper*
websocket_handshake_stream_create_helper() = 0;
@@ -215,7 +215,7 @@ class HttpStreamFactoryImpl::Job {
bool was_alpn_negotiated() const;
NextProto negotiated_protocol() const;
bool using_spdy() const;
- const BoundNetLog& net_log() const { return net_log_; }
+ const NetLogWithSource& net_log() const { return net_log_; }
HttpStreamRequest::StreamType stream_type() const { return stream_type_; }
std::unique_ptr<HttpStream> ReleaseStream() { return std::move(stream_); }
@@ -397,14 +397,14 @@ class HttpStreamFactoryImpl::Job {
const SpdySessionKey& spdy_session_key,
const GURL& origin_url,
const AddressList& addresses,
- const BoundNetLog& net_log);
+ const NetLogWithSource& net_log);
const HttpRequestInfo request_info_;
RequestPriority priority_;
ProxyInfo proxy_info_;
SSLConfig server_ssl_config_;
SSLConfig proxy_ssl_config_;
- const BoundNetLog net_log_;
+ const NetLogWithSource net_log_;
CompletionCallback io_callback_;
std::unique_ptr<ClientSocketHandle> connection_;

Powered by Google App Engine
This is Rietveld 408576698