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

Unified Diff: jingle/glue/proxy_resolving_client_socket.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: REBASE 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: jingle/glue/proxy_resolving_client_socket.cc
diff --git a/jingle/glue/proxy_resolving_client_socket.cc b/jingle/glue/proxy_resolving_client_socket.cc
index de1c40f4513dabe922c486818dcf0387207a39f9..e6898a71666184b8f49e9472a1ca37a1488fed2e 100644
--- a/jingle/glue/proxy_resolving_client_socket.cc
+++ b/jingle/glue/proxy_resolving_client_socket.cc
@@ -44,7 +44,7 @@ ProxyResolvingClientSocket::ProxyResolvingClientSocket(
// current use cases do.
proxy_url_("https://" + dest_host_port_pair_.ToString()),
tried_direct_connect_fallback_(false),
- bound_net_log_(net::BoundNetLog::Make(
+ bound_net_log_(net::NetLogWithSource::Make(
request_context_getter->GetURLRequestContext()->net_log(),
net::NetLogSourceType::SOCKET)),
weak_factory_(this) {
@@ -370,7 +370,7 @@ int ProxyResolvingClientSocket::GetLocalAddress(
return net::ERR_SOCKET_NOT_CONNECTED;
}
-const net::BoundNetLog& ProxyResolvingClientSocket::NetLog() const {
+const net::NetLogWithSource& ProxyResolvingClientSocket::NetLog() const {
if (transport_.get() && transport_->socket())
return transport_->socket()->NetLog();
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698