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

Unified Diff: net/udp/udp_server_socket.h

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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_server_socket.h
diff --git a/net/udp/udp_server_socket.h b/net/udp/udp_server_socket.h
index df9c85c0a0d9de05db5ec49dc6aec192cd57c27a..95edd9026c864ad1efc633f69a618434b2c4d366 100644
--- a/net/udp/udp_server_socket.h
+++ b/net/udp/udp_server_socket.h
@@ -16,12 +16,13 @@ namespace net {
class IPAddress;
class IPEndPoint;
-class NetLogWithSource;
+class NetLog;
+struct NetLogSource;
// A client socket that uses UDP as the transport layer.
class NET_EXPORT UDPServerSocket : public DatagramServerSocket {
public:
- UDPServerSocket(net::NetLog* net_log, const net::NetLog::Source& source);
+ UDPServerSocket(net::NetLog* net_log, const net::NetLogSource& source);
~UDPServerSocket() override;
// Implement DatagramServerSocket:

Powered by Google App Engine
This is Rietveld 408576698