| Index: ios/net/cookies/system_cookie_util.mm
|
| diff --git a/ios/net/cookies/system_cookie_util.mm b/ios/net/cookies/system_cookie_util.mm
|
| index 444a54538608abcbaefb9d2cc7183f0a27b64048..2f42feed73e00ef8236da1be2dd653b61caa1cf9 100644
|
| --- a/ios/net/cookies/system_cookie_util.mm
|
| +++ b/ios/net/cookies/system_cookie_util.mm
|
| @@ -72,8 +72,10 @@ net::CanonicalCookie CanonicalCookieFromSystemCookie(
|
| base::SysNSStringToUTF8([cookie domain]),
|
| base::SysNSStringToUTF8([cookie path]), ceation_time,
|
| base::Time::FromDoubleT([[cookie expiresDate] timeIntervalSince1970]),
|
| - base::Time(), [cookie isSecure], [cookie isHTTPOnly], false,
|
| - net::COOKIE_PRIORITY_DEFAULT);
|
| + base::Time(), [cookie isSecure], [cookie isHTTPOnly],
|
| + // TODO(mkwst): When iOS begins to support 'SameSite' and 'Priority'
|
| + // attributes, pass them through here.
|
| + net::COOKIE_SAME_SITE_DEFAULT, net::COOKIE_PRIORITY_DEFAULT);
|
| }
|
|
|
| // Converts net::CanonicalCookie to NSHTTPCookie.
|
|
|