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) { |