| Index: chrome/android/java/src/org/chromium/chrome/browser/cookies/CookiesFetcher.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/cookies/CookiesFetcher.java b/chrome/android/java/src/org/chromium/chrome/browser/cookies/CookiesFetcher.java
|
| index c21ad0d2ff5878e87bbd5d58f8865ef7abd5afc7..882611736f159ec9a2c6d28d65f2da21eb51802b 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/cookies/CookiesFetcher.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/cookies/CookiesFetcher.java
|
| @@ -176,7 +176,7 @@ public class CookiesFetcher {
|
| cookie.getValue(), cookie.getDomain(), cookie.getPath(),
|
| cookie.getCreationDate(), cookie.getExpirationDate(),
|
| cookie.getLastAccessDate(), cookie.isSecure(), cookie.isHttpOnly(),
|
| - cookie.isFirstPartyOnly(), cookie.getPriority());
|
| + cookie.isSameSite(), cookie.getPriority());
|
| }
|
| }
|
| }.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
|
| @@ -203,9 +203,9 @@ public class CookiesFetcher {
|
| @CalledByNative
|
| private CanonicalCookie createCookie(String url, String name, String value, String domain,
|
| String path, long creation, long expiration, long lastAccess, boolean secure,
|
| - boolean httpOnly, boolean firstPartyOnly, int priority) {
|
| + boolean httpOnly, boolean sameSite, int priority) {
|
| return new CanonicalCookie(url, name, value, domain, path, creation, expiration, lastAccess,
|
| - secure, httpOnly, firstPartyOnly, priority);
|
| + secure, httpOnly, sameSite, priority);
|
| }
|
|
|
| @CalledByNative
|
| @@ -298,6 +298,5 @@ public class CookiesFetcher {
|
| private native void nativePersistCookies(long nativeCookiesFetcher);
|
| private native void nativeRestoreCookies(long nativeCookiesFetcher, String url, String name,
|
| String value, String domain, String path, long creation, long expiration,
|
| - long lastAccess, boolean secure, boolean httpOnly, boolean firstPartyOnly,
|
| - int priority);
|
| + long lastAccess, boolean secure, boolean httpOnly, boolean sameSite, int priority);
|
| }
|
|
|