Home | History | Annotate | Download | only in automation

Lines Matching refs:cookie

64     const net::CookieMonster::CanonicalCookie& cookie,
73 url, cookie.Name(), cookie.Value(), original_domain,
74 cookie.Path(), cookie.ExpiryDate(), cookie.IsSecure(),
75 cookie.IsHttpOnly());
213 const net::CookieMonster::CanonicalCookie& cookie = cookie_list[i];
215 cookie_dict->SetString("name", cookie.Name());
216 cookie_dict->SetString("value", cookie.Value());
217 cookie_dict->SetString("path", cookie.Path());
218 cookie_dict->SetString("domain", cookie.Domain());
219 cookie_dict->SetBoolean("secure", cookie.IsSecure());
220 cookie_dict->SetBoolean("http_only", cookie.IsHttpOnly());
221 if (cookie.DoesExpire())
222 cookie_dict->SetDouble("expiry", cookie.ExpiryDate().ToDoubleT());
254 reply.SendError("Couldn't post task to delete the cookie");
271 if (!args->GetDictionary("cookie", &cookie_dict)) {
272 reply.SendError("'cookie' missing or invalid");
319 scoped_ptr<net::CookieMonster::CanonicalCookie> cookie(
323 if (!cookie.get()) {
324 reply.SendError("given 'cookie' parameters are invalid");
337 GURL(url), *cookie.get(), domain, context_getter, &event, &success);
339 reply.SendError("Couldn't post task to set the cookie");
345 reply.SendError("Could not set the cookie");