diff options
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r-- | net/base/cookie_monster.h | 16 |
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, |