Home | History | Annotate | Download | only in cookies

Lines Matching refs:details_

161     : details_(details) {
162 DCHECK(details_);
167 if (details_->name.get() && *details_->name != cookie.Name())
173 if (details_->path.get() && *details_->path != cookie.Path())
176 if (details_->secure.get() && *details_->secure != cookie.IsSecure())
179 if (details_->session.get() && *details_->session != !cookie.IsPersistent())
186 if (!details_->domain.get())
190 if (net::cookie_util::DomainIsHostOnly(*details_->domain))
191 details_->domain->insert(0, ".");
200 sub_domain.length() >= details_->domain->length();) {
201 if (sub_domain == *details_->domain)