| Index: net/cookies/cookie_monster_unittest.cc
|
| diff --git a/net/cookies/cookie_monster_unittest.cc b/net/cookies/cookie_monster_unittest.cc
|
| index 518411fbe8c2bc1cf01153ee6f939db07073c98f..722f4e0012788f53836080b92f4a80e960f817ea 100644
|
| --- a/net/cookies/cookie_monster_unittest.cc
|
| +++ b/net/cookies/cookie_monster_unittest.cc
|
| @@ -787,9 +787,8 @@ class CookieMonsterTestBase : public CookieStoreTest<T> {
|
|
|
| bool IsCookieInList(const CanonicalCookie& cookie, const CookieList& list) {
|
| for (CookieList::const_iterator it = list.begin(); it != list.end(); ++it) {
|
| - if (it->Source() == cookie.Source() && it->Name() == cookie.Name() &&
|
| - it->Value() == cookie.Value() && it->Domain() == cookie.Domain() &&
|
| - it->Path() == cookie.Path() &&
|
| + if (it->Name() == cookie.Name() && it->Value() == cookie.Value() &&
|
| + it->Domain() == cookie.Domain() && it->Path() == cookie.Path() &&
|
| it->CreationDate() == cookie.CreationDate() &&
|
| it->ExpiryDate() == cookie.ExpiryDate() &&
|
| it->LastAccessDate() == cookie.LastAccessDate() &&
|
|
|