| Index: content/browser/net/quota_policy_cookie_store_unittest.cc
|
| diff --git a/content/browser/net/quota_policy_cookie_store_unittest.cc b/content/browser/net/quota_policy_cookie_store_unittest.cc
|
| index ca33d6ecbd3185533d20dbc5a2797d0b9e809069..01db50f9b3d6fc4048fb5a516bcabcd55d8a4b15 100644
|
| --- a/content/browser/net/quota_policy_cookie_store_unittest.cc
|
| +++ b/content/browser/net/quota_policy_cookie_store_unittest.cc
|
| @@ -96,10 +96,10 @@ class QuotaPolicyCookieStoreTest : public testing::Test {
|
| const std::string& domain,
|
| const std::string& path,
|
| const base::Time& creation) {
|
| - store_->AddCookie(
|
| - net::CanonicalCookie(
|
| - GURL(), name, value, domain, path, creation, creation, creation,
|
| - false, false, false, net::COOKIE_PRIORITY_DEFAULT));
|
| + store_->AddCookie(net::CanonicalCookie(
|
| + GURL(), name, value, domain, path, creation, creation, creation, false,
|
| + false, net::CookieSameSite::DEFAULT_MODE,
|
| + net::COOKIE_PRIORITY_DEFAULT));
|
| }
|
|
|
| void DestroyStore() {
|
|
|