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

Unified Diff: net/base/host_port_pair.cc

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/base/host_port_pair.cc
diff --git a/net/base/host_port_pair.cc b/net/base/host_port_pair.cc
index 6675692123a58a26091fdd8b1a290c139185fc7c..3f8cad83897f0204a54a33fc9fcd087dacae21b3 100644
--- a/net/base/host_port_pair.cc
+++ b/net/base/host_port_pair.cc
@@ -14,9 +14,11 @@
namespace net {
-HostPortPair::HostPortPair() : port_(0) {}
+HostPortPair::HostPortPair() : port_(0) {
+}
HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port)
- : host_(in_host), port_(in_port) {}
+ : host_(in_host), port_(in_port) {
+}
// static
HostPortPair HostPortPair::FromURL(const GURL& url) {

Powered by Google App Engine
This is Rietveld 408576698