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

Unified Diff: net/udp/udp_socket_libevent.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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_libevent.h
diff --git a/net/udp/udp_socket_libevent.h b/net/udp/udp_socket_libevent.h
index 8ec5c212c094cca3a670c7117ac1040c839454df..f0e2d5f48ae04da52df1671cd469b56a650ec1bf 100644
--- a/net/udp/udp_socket_libevent.h
+++ b/net/udp/udp_socket_libevent.h
@@ -168,8 +168,8 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe {
private:
enum SocketOptions {
- SOCKET_OPTION_REUSE_ADDRESS = 1 << 0,
- SOCKET_OPTION_BROADCAST = 1 << 1,
+ SOCKET_OPTION_REUSE_ADDRESS = 1 << 0,
+ SOCKET_OPTION_BROADCAST = 1 << 1,
SOCKET_OPTION_MULTICAST_LOOP = 1 << 2
};
@@ -214,7 +214,9 @@ class NET_EXPORT UDPSocketLibevent : public base::NonThreadSafe {
// success, or the net error code on failure. On success, LogRead takes in a
// sockaddr and its length, which are mandatory, while LogWrite takes in an
// optional IPEndPoint.
- void LogRead(int result, const char* bytes, socklen_t addr_len,
+ void LogRead(int result,
+ const char* bytes,
+ socklen_t addr_len,
const sockaddr* addr) const;
void LogWrite(int result, const char* bytes, const IPEndPoint* address) const;

Powered by Google App Engine
This is Rietveld 408576698