Index: net/base/cookie_monster_store_test.h |
diff --git a/net/base/cookie_monster_store_test.h b/net/base/cookie_monster_store_test.h |
index 8a21930f1426fa3c7384920cbab6e6fe7a290264..ad32ce41b19d50e73a682da15c311bbf754fcc83 100644 |
--- a/net/base/cookie_monster_store_test.h |
+++ b/net/base/cookie_monster_store_test.h |
@@ -18,7 +18,7 @@ struct CookieStoreCommand { |
enum Type { |
ADD, |
UPDATE_ACCESS_TIME, |
- REMOVE, |
+ REMOVE |
jochen (gone - plz use gerrit)
2010/12/02 15:09:51
please leave the ,
pastarmovj
2010/12/02 16:29:07
Done.
|
}; |
CookieStoreCommand(Type type, |
@@ -66,6 +66,9 @@ class MockPersistentCookieStore |
CookieStoreCommand(CookieStoreCommand::REMOVE, cookie)); |
} |
+ // No files are created so nothing to clear either |
+ virtual void SetClearLocalStateOnExit(bool clear_local_state) {} |
+ |
void SetLoadExpectation( |
bool return_value, |
const std::vector<net::CookieMonster::CanonicalCookie*>& result) { |
@@ -185,6 +188,8 @@ class MockSimplePersistentCookieStore |
cookies_.erase(it); |
} |
+ virtual void SetClearLocalStateOnExit(bool clear_local_state) {} |
+ |
private: |
CanonicalCookieMap cookies_; |
}; |