Lines Matching refs:url
30 const GURL& url,
35 context_getter->GetURLRequestContext()->cookie_store()->GetCookies(url);
40 const GURL& url,
46 GetCookieMonster()->GetAllCookiesForURL(url);
51 const GURL& url,
58 SetCookie(url, value);
63 const GURL& url,
73 url, cookie.Name(), cookie.Value(), original_domain,
80 const GURL& url,
85 DeleteCookie(url, name);
108 void GetCookies(const GURL& url,
113 if (url.is_valid() && contents) {
126 url, context_getter, &event, value)));
133 void SetCookie(const GURL& url,
139 if (url.is_valid() && contents) {
153 url, value, context_getter, &event,
161 void DeleteCookie(const GURL& url,
166 if (url.is_valid() && contents) {
179 url, cookie_name, context_getter, &event)));
189 std::string url;
190 if (!args->GetString("url", &url)) {
191 reply.SendError("'url' missing or invalid");
204 GURL(url), context_getter, &event, &cookie_list);
234 std::string url, name;
235 if (!args->GetString("url", &url)) {
236 reply.SendError("'url' missing or invalid");
252 GURL(url), name, context_getter, &event);
265 std::string url;
266 if (!args->GetString("url", &url)) {
267 reply.SendError("'url' missing or invalid");
321 GURL(url), name, value, domain, path, base::Time(),
337 GURL(url), *cookie.get(), domain, context_getter, &event, &success);