summaryrefslogtreecommitdiffstats
path: root/net/base/cookie_monster.h
diff options
context:
space:
mode:
authorrdsmith@google.com <rdsmith@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 20:11:51 +0000
committerrdsmith@google.com <rdsmith@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 20:11:51 +0000
commit2f3f3597dd6ffc1883d8581df69dc531e632c722 (patch)
treead41edceb4f319581430adb0b11edd32e441a67d /net/base/cookie_monster.h
parentc8c7d8a930c1cb7af9a13c60cab10cfece2d0645 (diff)
downloadchromium_src-2f3f3597dd6ffc1883d8581df69dc531e632c722.zip
chromium_src-2f3f3597dd6ffc1883d8581df69dc531e632c722.tar.gz
chromium_src-2f3f3597dd6ffc1883d8581df69dc531e632c722.tar.bz2
Fix incorrect style for CL http://codereview.chromium.org/2718011/show
identified by Darin after commit. BUG=none TEST=net_unittests --gtest_filter=CookieMonsterTest.*:ParsedCookieTest.* Review URL: http://codereview.chromium.org/2844043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51768 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r--net/base/cookie_monster.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h
index eadc59a..33d0a69 100644
--- a/net/base/cookie_monster.h
+++ b/net/base/cookie_monster.h
@@ -235,13 +235,15 @@ class CookieMonster : public CookieStore {
void InternalUpdateCookieAccessTime(CanonicalCookie* cc);
- enum DeletionCause { kDeleteCookieExplicit,
- kDeleteCookieOverwrite,
- kDeleteCookieExpired,
- kDeleteCookieEvicted,
- kDeleteCookieDuplicateInBackingStore,
- kDeleteCookieDontRecord,
- kDeleteCookieLastEntry = kDeleteCookieDontRecord };
+ enum DeletionCause {
+ DELETE_COOKIE_EXPLICIT,
+ DELETE_COOKIE_OVERWRITE,
+ DELETE_COOKIE_EXPIRED,
+ DELETE_COOKIE_EVICTED,
+ DELETE_COOKIE_DUPLICATE_IN_BACKING_STORE,
+ DELETE_COOKIE_DONT_RECORD,
+ DELETE_COOKIE_LAST_ENTRY = DELETE_COOKIE_DONT_RECORD
+ };
// |deletion_cause| argument is for collecting statistics.
void InternalDeleteCookie(CookieMap::iterator it, bool sync_to_store,