#ifndef NET_SOCKET_UDP_NET_LOG_PARAMETERS_H_
#define NET_SOCKET_UDP_NET_LOG_PARAMETERS_H_
#include "base/values.h"
#include "net/base/network_handle.h"
#include "net/log/net_log_event_type.h"
namespace net {
class NetLogWithSource;
class IPEndPoint;
void NetLogUDPDataTransfer(const NetLogWithSource& net_log,
NetLogEventType type,
int byte_count,
const char* bytes,
const IPEndPoint* address);
base::Value::Dict CreateNetLogUDPConnectParams(const IPEndPoint& address,
handles::NetworkHandle network);
}
#endif