diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 01:34:14 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 01:34:14 +0000 |
commit | 687c5ac1a02ba5b75150713ac3c70cf5875d6273 (patch) | |
tree | 4b361de9329d354aac5aa358f2b075098ebde049 /net/base/cookie_monster.h | |
parent | 4f3edf1d4231f09d486adbb56172ac6391589236 (diff) | |
download | chromium_src-687c5ac1a02ba5b75150713ac3c70cf5875d6273.zip chromium_src-687c5ac1a02ba5b75150713ac3c70cf5875d6273.tar.gz chromium_src-687c5ac1a02ba5b75150713ac3c70cf5875d6273.tar.bz2 |
Reverts 42520 and 42477. It back red again when adding this change back.
TEST=valgrind test: unit should turn green
BUG=38398
BUG=39177
Review URL: http://codereview.chromium.org/1313003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r-- | net/base/cookie_monster.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h index a48c2d3..ccdae0b 100644 --- a/net/base/cookie_monster.h +++ b/net/base/cookie_monster.h @@ -112,9 +112,6 @@ class CookieMonster : public CookieStore { // one passed into the function via |delete_after|. int DeleteAllCreatedAfter(const base::Time& delete_begin, bool sync_to_store); - // Delete all cookies that match the given URL. - int DeleteAllForURL(const GURL& url, bool sync_to_store); - // Delete one specific cookie. bool DeleteCookie(const std::string& domain, const CanonicalCookie& cookie, @@ -179,10 +176,6 @@ class CookieMonster : public CookieStore { const std::string& path, CookieList* list); - // Internal helper returning all cookies for a given URL. The caller is - // assumed to hold lock_ and having called InitIfNecessary(). - CookieList InternalGetAllCookiesForURL(const GURL& url); - // Delete any cookies that are equivalent to |ecc| (same path, key, etc). // If |skip_httponly| is true, httponly cookies will not be deleted. The // return value with be true if |skip_httponly| skipped an httponly cookie. |