diff options
author | rdsmith@google.com <rdsmith@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-21 14:26:07 +0000 |
---|---|---|
committer | rdsmith@google.com <rdsmith@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-21 14:26:07 +0000 |
commit | 0b7ba8c5a0f954e8dea8709a34a5b5f0dc40c615 (patch) | |
tree | 8e1e10ecc540775794057353f51eff59a5df4b44 | |
parent | 2d443e4df080e5329f1cbee0708e8ebfcfa96800 (diff) | |
download | chromium_src-0b7ba8c5a0f954e8dea8709a34a5b5f0dc40c615.zip chromium_src-0b7ba8c5a0f954e8dea8709a34a5b5f0dc40c615.tar.gz chromium_src-0b7ba8c5a0f954e8dea8709a34a5b5f0dc40c615.tar.bz2 |
Made passive the comments on the delete functions.
BUG=None
TEST=None
TBR=eroman
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60051 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/base/cookie_monster.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h index e3ddc00..febf147 100644 --- a/net/base/cookie_monster.h +++ b/net/base/cookie_monster.h @@ -169,24 +169,24 @@ class CookieMonster : public CookieStore { // creation date. CookieList GetAllCookiesForURL(const GURL& url); - // Delete all of the cookies. + // Deletes all of the cookies. int DeleteAll(bool sync_to_store); - // Delete all of the cookies that have a creation_date greater than or equal + // Deletes all of the cookies that have a creation_date greater than or equal // to |delete_begin| and less than |delete_end| int DeleteAllCreatedBetween(const base::Time& delete_begin, const base::Time& delete_end, bool sync_to_store); - // Delete all of the cookies that have a creation_date more recent than the + // Deletes all of the cookies that have a creation_date more recent than the // 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 host of the given URL + // Deletes all cookies that match the host of the given URL // regardless of path. This includes all http_only and secure cookies, // but does not include any domain cookies that may apply to this host. // Returns the number of cookies deleted. int DeleteAllForHost(const GURL& url); - // Delete one specific cookie. + // Deletes one specific cookie. bool DeleteCanonicalCookie(const CanonicalCookie& cookie); // Override the default list of schemes that are allowed to be set in |