| Index: net/cookies/cookie_monster_store_test.cc
|
| diff --git a/net/cookies/cookie_monster_store_test.cc b/net/cookies/cookie_monster_store_test.cc
|
| index 427129862d7984e0aa78cd1b0a1a0f5d7b2c8f74..54fe5c43516cde5d52bd9491e56dd93bd50c2672 100644
|
| --- a/net/cookies/cookie_monster_store_test.cc
|
| +++ b/net/cookies/cookie_monster_store_test.cc
|
| @@ -138,7 +138,7 @@ CanonicalCookie BuildCanonicalCookie(const std::string& key,
|
|
|
| return CanonicalCookie(GURL(), pc.Name(), pc.Value(), key, cookie_path,
|
| creation_time, cookie_expires, creation_time,
|
| - pc.IsSecure(), pc.IsHttpOnly(), pc.IsSameSite(),
|
| + pc.IsSecure(), pc.IsHttpOnly(), pc.SameSite(),
|
| pc.Priority());
|
| }
|
|
|
| @@ -248,8 +248,8 @@ scoped_ptr<CookieMonster> CreateMonsterFromStoreForGC(
|
|
|
| CanonicalCookie cc(GURL(), "a", "1", base::StringPrintf("h%05d.izzle", i),
|
| "/path", creation_time, expiration_time,
|
| - last_access_time, secure, false, false,
|
| - COOKIE_PRIORITY_DEFAULT);
|
| + last_access_time, secure, false,
|
| + CookieSameSite::DEFAULT_MODE, COOKIE_PRIORITY_DEFAULT);
|
| store->AddCookie(cc);
|
| }
|
|
|
|
|