From fae7669f438f42169f9da35406d9b4cef6b541fd Mon Sep 17 00:00:00 2001 From: "eroman@chromium.org" Date: Mon, 2 Aug 2010 21:49:40 +0000 Subject: Address a TODO: use HostPortPair rather than a naked host string. Review URL: http://codereview.chromium.org/3047033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54613 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/proxy_server.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'net/proxy/proxy_server.cc') diff --git a/net/proxy/proxy_server.cc b/net/proxy/proxy_server.cc index 792a47d..f172a6b 100644 --- a/net/proxy/proxy_server.cc +++ b/net/proxy/proxy_server.cc @@ -70,8 +70,8 @@ std::string HostNoBrackets(const std::string& host) { } // namespace -ProxyServer::ProxyServer(Scheme scheme, const std::string& host, int port) - : scheme_(scheme), host_port_pair_(HostNoBrackets(host), port) { +ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair) + : scheme_(scheme), host_port_pair_(host_port_pair) { } const HostPortPair& ProxyServer::host_port_pair() const { @@ -222,7 +222,7 @@ ProxyServer ProxyServer::FromSchemeHostAndPort( if (port == -1) port = GetDefaultPortForScheme(scheme); - return ProxyServer(scheme, host, port); + return ProxyServer(scheme, HostPortPair(HostNoBrackets(host), port)); } } // namespace net -- cgit v1.1