Home | History | Annotate | Download | only in cookies

Lines Matching refs:details_

160     : details_(details) {
161 DCHECK(details_);
166 if (details_->name.get() && *details_->name != cookie.Name())
172 if (details_->path.get() && *details_->path != cookie.Path())
175 if (details_->secure.get() && *details_->secure != cookie.IsSecure())
178 if (details_->session.get() && *details_->session != !cookie.IsPersistent())
185 if (!details_->domain.get())
189 if (net::cookie_util::DomainIsHostOnly(*details_->domain))
190 details_->domain->insert(0, ".");
199 sub_domain.length() >= details_->domain->length();) {
200 if (sub_domain == *details_->domain)