Home | History | Annotate | Download | only in extensions

Lines Matching refs:Domain

55   result->SetString(keys::kDomainKey, cookie.Domain());
57 net::CookieMonster::DomainIsHostOnly(cookie.Domain()));
94 const std::string& domain_key = cookie.Domain();
110 // Ignore any cookie whose domain doesn't match the extension's
141 MatchesDomain(cookie.Domain()) &&
163 bool MatchFilter::MatchesDomain(const std::string& domain) {
170 // Add a leading '.' character to the filter domain if it doesn't exist.
174 std::string sub_domain(domain);
175 // Strip any leading '.' character from the input cookie domain.
179 // Now check whether the domain argument is a subdomain of the filter domain.