Lines Matching full:cookie
49 const net::CookieMonster::CanonicalCookie& cookie,
53 result->SetString(keys::kNameKey, cookie.Name());
54 result->SetString(keys::kValueKey, cookie.Value());
55 result->SetString(keys::kDomainKey, cookie.Domain());
57 net::CookieMonster::DomainIsHostOnly(cookie.Domain()));
58 result->SetString(keys::kPathKey, cookie.Path());
59 result->SetBoolean(keys::kSecureKey, cookie.IsSecure());
60 result->SetBoolean(keys::kHttpOnlyKey, cookie.IsHttpOnly());
61 result->SetBoolean(keys::kSessionKey, !cookie.DoesExpire());
62 if (cookie.DoesExpire()) {
64 cookie.ExpiryDate().ToDoubleT());
93 const net::CookieMonster::CanonicalCookie& cookie) {
94 const std::string& domain_key = cookie.Domain();
96 cookie.IsSecure() ? chrome::kHttpsScheme : chrome::kHttpScheme;
110 // Ignore any cookie whose domain doesn't match the extension's
115 // Filter the cookie using the match filter.
139 const net::CookieMonster::CanonicalCookie& cookie) {
140 return MatchesString(keys::kNameKey, cookie.Name()) &&
141 MatchesDomain(cookie.Domain()) &&
142 MatchesString(keys::kPathKey, cookie.Path()) &&
143 MatchesBoolean(keys::kSecureKey, cookie.IsSecure()) &&
144 MatchesBoolean(keys::kSessionKey, !cookie.DoesExpire());
175 // Strip any leading '.' character from the input cookie domain.