| Index: net/cookies/cookie_monster_unittest.cc
|
| diff --git a/net/cookies/cookie_monster_unittest.cc b/net/cookies/cookie_monster_unittest.cc
|
| index fc570b9e58951c4e870419ea996d3b8f2984b512..84183d72352c02270d44a0059f7ffcf1fd70bd12 100644
|
| --- a/net/cookies/cookie_monster_unittest.cc
|
| +++ b/net/cookies/cookie_monster_unittest.cc
|
| @@ -43,8 +43,8 @@ class NewMockPersistentCookieStore
|
| MOCK_METHOD1(UpdateCookieAccessTime,
|
| void(const CookieMonster::CanonicalCookie& cc));
|
| MOCK_METHOD1(DeleteCookie, void(const CookieMonster::CanonicalCookie& cc));
|
| - MOCK_METHOD1(SetClearLocalStateOnExit, void(bool clear_local_state));
|
| MOCK_METHOD1(Flush, void(const base::Closure& callback));
|
| + MOCK_METHOD0(SetForceKeepSessionState, void());
|
|
|
| private:
|
| virtual ~NewMockPersistentCookieStore() {}
|
| @@ -2220,7 +2220,7 @@ class FlushablePersistentStore : public CookieMonster::PersistentCookieStore {
|
| void AddCookie(const CookieMonster::CanonicalCookie&) {}
|
| void UpdateCookieAccessTime(const CookieMonster::CanonicalCookie&) {}
|
| void DeleteCookie(const CookieMonster::CanonicalCookie&) {}
|
| - void SetClearLocalStateOnExit(bool clear_local_state) {}
|
| + void SetForceKeepSessionState() {}
|
|
|
| void Flush(const base::Closure& callback) {
|
| ++flush_count_;
|
|
|