| Index: net/base/cookie_monster_unittest.cc
|
| diff --git a/net/base/cookie_monster_unittest.cc b/net/base/cookie_monster_unittest.cc
|
| index ce8d9ae29c5d4095e413c0149af5a019d2a8132e..dd5d1e198568202f86adbef23f98c9b1a55fda1f 100644
|
| --- a/net/base/cookie_monster_unittest.cc
|
| +++ b/net/base/cookie_monster_unittest.cc
|
| @@ -46,6 +46,7 @@ class NewMockPersistentCookieStore
|
| void(const CookieMonster::CanonicalCookie& cc));
|
| MOCK_METHOD1(DeleteCookie, void(const CookieMonster::CanonicalCookie& cc));
|
| MOCK_METHOD1(SetClearLocalStateOnExit, void(bool clear_local_state));
|
| + MOCK_METHOD1(SetClearSessionStateOnExit, void(bool clear_session_state));
|
| MOCK_METHOD1(Flush, void(Task* completion_task));
|
| };
|
|
|
| @@ -3027,6 +3028,7 @@ class FlushablePersistentStore : public CookieMonster::PersistentCookieStore {
|
| void UpdateCookieAccessTime(const CookieMonster::CanonicalCookie&) {}
|
| void DeleteCookie(const CookieMonster::CanonicalCookie&) {}
|
| void SetClearLocalStateOnExit(bool clear_local_state) {}
|
| + void SetClearSessionStateOnExit(bool clear_session_state) {}
|
|
|
| void Flush(Task* completion_callback) {
|
| ++flush_count_;
|
|
|