Searched defs:host_port_str (Results 1 - 1 of 1) sorted by relevance

/external/chromium/chrome/browser/sync/notifier/
H A Dsync_notifier_factory.cc25 net::HostPortPair StringToHostPortPair(const std::string& host_port_str, argument
27 std::string::size_type colon_index = host_port_str.find(':');
29 return net::HostPortPair(host_port_str, default_port);
32 std::string host = host_port_str.substr(0, colon_index);
33 std::string port_str = host_port_str.substr(colon_index + 1);

Completed in 51 milliseconds