Index: net/cookies/cookie_monster_unittest.cc |
diff --git a/net/cookies/cookie_monster_unittest.cc b/net/cookies/cookie_monster_unittest.cc |
index cd7ab02c868f7dd634e899a735141d86ea8ab64f..9b2b4dd310d1d5172b2cc0ccbcd9dcf052cdd097 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() && |