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

/external/chromium_org/net/base/
H A Dhost_port_pair.h18 class NET_EXPORT HostPortPair { class in namespace:net
20 HostPortPair();
22 HostPortPair(const std::string& in_host, uint16 in_port);
24 // Creates a HostPortPair for the origin of |url|.
25 static HostPortPair FromURL(const GURL& url);
27 // Creates a HostPortPair from an IPEndPoint.
28 static HostPortPair FromIPEndPoint(const IPEndPoint& ipe);
30 // Creates a HostPortPair from a string formatted in same manner as
32 static HostPortPair FromString(const std::string& str);
36 bool operator<(const HostPortPair
[all...]
H A Dhost_port_pair.cc17 HostPortPair::HostPortPair() : port_(0) {} function in class:net::HostPortPair
18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) function in class:net::HostPortPair
22 HostPortPair HostPortPair::FromURL(const GURL& url) {
23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) {
28 return HostPortPair(ip
[all...]
/external/chromium_org/ppapi/proxy/
H A Dhost_resolver_resource_base.h22 struct HostPortPair { struct in namespace:ppapi
53 void SendResolve(const HostPortPair& host_port,

Completed in 48 milliseconds