Home | History | Annotate | Download | only in cookies

Lines Matching refs:domain

42   // If no domain was specified in the domain string, default to a host cookie.
43 // We match IE/Firefox in allowing a domain=IPADDR if it matches the url
52 // Get the normalized domain specified in cookie line.
60 // Ensure |url| and |cookie_domain| have the same domain+registry.
65 return false; // IP addresses/intranet hosts can't set domain cookies.
69 return false; // Can't set a cookie on a different domain + registry.
72 // we know the domain+registry are the same from the above checks, this is
203 GURL CookieOriginToURL(const std::string& domain, bool is_https) {
204 if (domain.empty())
208 const std::string host = domain[0] == '.' ? domain.substr(1) : domain;