Index: net/cookies/cookie_monster_unittest.cc |
diff --git a/net/cookies/cookie_monster_unittest.cc b/net/cookies/cookie_monster_unittest.cc |
index b8ea404d07a3cd152266da6a86283cb627b0250f..9a8be9438f55fa6282ae46a497445ca7bda69ef5 100644 |
--- a/net/cookies/cookie_monster_unittest.cc |
+++ b/net/cookies/cookie_monster_unittest.cc |
@@ -3364,11 +3364,11 @@ class CookieMonsterNotificationTest : public CookieMonsterTest { |
void RecordCookieChanges(std::vector<CanonicalCookie>* out_cookies, |
std::vector<bool>* out_removes, |
const CanonicalCookie& cookie, |
- bool removed) { |
+ CookieStore::ChangeCause cause) { |
DCHECK(out_cookies); |
out_cookies->push_back(cookie); |
if (out_removes) |
- out_removes->push_back(removed); |
+ out_removes->push_back(CookieStore::ChangeCauseIsDeletion(cause)); |
} |
TEST_F(CookieMonsterNotificationTest, NoNotifyWithNoCookie) { |