Searched refs:host_port_str (Results 1 – 1 of 1) sorted by relevance
25 net::HostPortPair StringToHostPortPair(const std::string& host_port_str, in StringToHostPortPair() argument27 std::string::size_type colon_index = host_port_str.find(':'); in StringToHostPortPair()29 return net::HostPortPair(host_port_str, default_port); in StringToHostPortPair()32 std::string host = host_port_str.substr(0, colon_index); in StringToHostPortPair()33 std::string port_str = host_port_str.substr(colon_index + 1); in StringToHostPortPair()