diff options
author | mkwst <mkwst@chromium.org> | 2015-10-20 02:03:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-20 09:04:35 +0000 |
commit | 57306877bafb9ed28f39dc96ae0a0c5eae680e8a (patch) | |
tree | a9cb267aaa1efb4975df243de0b9359bd010b623 /net | |
parent | 9a20461563acb807fc3f884b6e42bafe2ec9e822 (diff) | |
download | chromium_src-57306877bafb9ed28f39dc96ae0a0c5eae680e8a.zip chromium_src-57306877bafb9ed28f39dc96ae0a0c5eae680e8a.tar.gz chromium_src-57306877bafb9ed28f39dc96ae0a0c5eae680e8a.tar.bz2 |
Remove the unused 'CookieMonster::GetAllCookiesForURL'
BUG=544114
R=vabr@chromium.org
Review URL: https://codereview.chromium.org/1412303003
Cr-Commit-Position: refs/heads/master@{#355015}
Diffstat (limited to 'net')
-rw-r--r-- | net/cookies/cookie_monster.cc | 8 | ||||
-rw-r--r-- | net/cookies/cookie_monster.h | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/net/cookies/cookie_monster.cc b/net/cookies/cookie_monster.cc index 037d1b7..9adfa1b 100644 --- a/net/cookies/cookie_monster.cc +++ b/net/cookies/cookie_monster.cc @@ -1216,14 +1216,6 @@ CookieList CookieMonster::GetAllCookiesForURLWithOptions( return cookies; } -CookieList CookieMonster::GetAllCookiesForURL(const GURL& url) { - CookieOptions options; - options.set_include_httponly(); - options.set_first_party(url::Origin(url)); - - return GetAllCookiesForURLWithOptions(url, options); -} - int CookieMonster::DeleteAll(bool sync_to_store) { base::AutoLock autolock(lock_); diff --git a/net/cookies/cookie_monster.h b/net/cookies/cookie_monster.h index 8426d72..44f18b8 100644 --- a/net/cookies/cookie_monster.h +++ b/net/cookies/cookie_monster.h @@ -473,8 +473,6 @@ class NET_EXPORT CookieMonster : public CookieStore { CookieList GetAllCookiesForURLWithOptions(const GURL& url, const CookieOptions& options); - CookieList GetAllCookiesForURL(const GURL& url); - int DeleteAll(bool sync_to_store); int DeleteAllCreatedBetween(const base::Time& delete_begin, |