| 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..98fdcf7befc30ad635fbdb4a829de83af6247f3f 100644
|
| --- a/content/browser/net/quota_policy_cookie_store_unittest.cc
|
| +++ b/content/browser/net/quota_policy_cookie_store_unittest.cc
|
| @@ -96,10 +96,9 @@ 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::COOKIE_SAME_SITE_DEFAULT, net::COOKIE_PRIORITY_DEFAULT));
|
| }
|
|
|
| void DestroyStore() {
|
|
|