| Index: ios/net/cookies/system_cookie_util_unittest.mm
|
| diff --git a/ios/net/cookies/system_cookie_util_unittest.mm b/ios/net/cookies/system_cookie_util_unittest.mm
|
| index 0273809701438f5107fedfcdd99321c8fbe7fc56..e9ca2157d76563586d5e7e4db52ab42c682c7e8e 100644
|
| --- a/ios/net/cookies/system_cookie_util_unittest.mm
|
| +++ b/ios/net/cookies/system_cookie_util_unittest.mm
|
| @@ -32,7 +32,7 @@ void CheckSystemCookie(const base::Time& expires, bool secure, bool httponly) {
|
| expires,
|
| base::Time(), // last_access
|
| secure, httponly,
|
| - false, // same_site
|
| + net::COOKIE_SAME_SITE_DEFAULT,
|
| net::COOKIE_PRIORITY_DEFAULT);
|
| // Convert it to system cookie.
|
| base::scoped_nsobject<NSHTTPCookie> system_cookie(
|
| @@ -125,7 +125,7 @@ TEST(CookieUtil, SystemCookieFromBadCanonicalCookie) {
|
| base::Time(), // last_access
|
| false, // secure
|
| false, // httponly
|
| - false, // same_site
|
| + net::COOKIE_SAME_SITE_DEFAULT,
|
| net::COOKIE_PRIORITY_DEFAULT);
|
| // Convert it to system cookie.
|
| base::scoped_nsobject<NSHTTPCookie> system_cookie(
|
|
|