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

Unified Diff: net/base/ip_endpoint.cc

Issue 642403002: git cl format the first third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 6 years, 1 month 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/base/ip_endpoint.cc
diff --git a/net/base/ip_endpoint.cc b/net/base/ip_endpoint.cc
index a0d378ee4cc6e8e5b29cc668ca475e22a3ca5155..abba528deda28f26155e75f61852342f21965be5 100644
--- a/net/base/ip_endpoint.cc
+++ b/net/base/ip_endpoint.cc
@@ -21,13 +21,15 @@ const socklen_t kSockaddrInSize = sizeof(struct sockaddr_in);
const socklen_t kSockaddrIn6Size = sizeof(struct sockaddr_in6);
}
-IPEndPoint::IPEndPoint() : port_(0) {}
+IPEndPoint::IPEndPoint() : port_(0) {
+}
-IPEndPoint::~IPEndPoint() {}
+IPEndPoint::~IPEndPoint() {
+}
IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port)
- : address_(address),
- port_(port) {}
+ : address_(address), port_(port) {
+}
IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
address_ = endpoint.address_;

Powered by Google App Engine
This is Rietveld 408576698