Index: net/base/cookie_monster.h |
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h |
index cdb508ee971e0232cd8dd082d088300a809317dc..f0a0312f3dae0cbb30adc499fc06b1171823350d 100644 |
--- a/net/base/cookie_monster.h |
+++ b/net/base/cookie_monster.h |
@@ -168,10 +168,15 @@ class CookieMonster : public CookieStore { |
CookieList GetAllCookies(); |
// Returns all the cookies, for use in management UI, etc. Filters results |
- // using given url scheme, host / domain and path. This does not mark the |
- // cookies as having been accessed. |
+ // using given url scheme, host / domain and path and options. This does not |
+ // mark the cookies as having been accessed. |
// The returned cookies are ordered by longest path, then earliest |
// creation date. |
+ CookieList GetAllCookiesForURLWithOptions(const GURL& url, |
+ const CookieOptions& options); |
+ |
+ // Invokes GetAllCookiesForURLWithOptions with options set to include HTTP |
+ // only cookies. |
CookieList GetAllCookiesForURL(const GURL& url); |
// Deletes all of the cookies. |