diff options
Diffstat (limited to 'net/base/cookie_monster.h')
-rw-r--r-- | net/base/cookie_monster.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h index f73698d..6ae2903 100644 --- a/net/base/cookie_monster.h +++ b/net/base/cookie_monster.h @@ -50,19 +50,17 @@ class CookieMonster : public CookieStore { typedef std::pair<std::string, CanonicalCookie> CookieListPair; typedef std::vector<CookieListPair> CookieList; - - CookieMonster(); - // The store passed in should not have had Init() called on it yet. This class // will take care of initializing it. The backing store is NOT owned by this // class, but it must remain valid for the duration of the cookie monster's - // existence. - CookieMonster(PersistentCookieStore* store); + // existence. If |store| is NULL, then no backing store will be updated. + explicit CookieMonster(PersistentCookieStore* store); #ifdef UNIT_TEST - CookieMonster(int last_access_threshold_milliseconds) + CookieMonster(PersistentCookieStore* store, + int last_access_threshold_milliseconds) : initialized_(false), - store_(NULL), + store_(store), last_access_threshold_(base::TimeDelta::FromMilliseconds( last_access_threshold_milliseconds)) { SetDefaultCookieableSchemes(); |