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

Unified Diff: net/udp/udp_socket_posix.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/udp/udp_socket_posix.h
diff --git a/net/udp/udp_socket_posix.h b/net/udp/udp_socket_posix.h
index b6f4f4b30a7826ae41e2630f93432e5850947487..0f29f4a78536cefe3787c5f7a9cea492892cb311 100644
--- a/net/udp/udp_socket_posix.h
+++ b/net/udp/udp_socket_posix.h
@@ -129,7 +129,7 @@ class NET_EXPORT UDPSocketPosix : public base::NonThreadSafe {
// Returns true if the socket is already connected or bound.
bool is_connected() const { return is_connected_; }
- const BoundNetLog& NetLog() const { return net_log_; }
+ const NetLogWithSource& NetLog() const { return net_log_; }
// Sets corresponding flags in |socket_options_| to allow the socket
// to share the local address to which the socket will be bound with
@@ -315,7 +315,7 @@ class NET_EXPORT UDPSocketPosix : public base::NonThreadSafe {
// External callback; called when write is complete.
CompletionCallback write_callback_;
- BoundNetLog net_log_;
+ NetLogWithSource net_log_;
// Network that this socket is bound to via BindToNetwork().
NetworkChangeNotifier::NetworkHandle bound_network_;

Powered by Google App Engine
This is Rietveld 408576698