Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 790f6f44 authored by Selim Gurun's avatar Selim Gurun Committed by Android (Google) Code Review
Browse files

Merge "Remove synchronized from acceptThirdPartyCookies()" into lmp-dev

parents 1771d39e 42a9ee50
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36617,7 +36617,7 @@ package android.webkit {
  public class CookieManager {
    method public synchronized boolean acceptCookie();
    method public synchronized boolean acceptThirdPartyCookies(android.webkit.WebView);
    method public boolean acceptThirdPartyCookies(android.webkit.WebView);
    method public static boolean allowFileSchemeCookies();
    method public void flush();
    method public java.lang.String getCookie(java.lang.String);
+1 −1
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ public class CookieManager {
     * @param webview the {@link WebView} instance to get the cookie policy for
     * @return true if the {@link WebView} accepts third party cookies
     */
    public synchronized boolean acceptThirdPartyCookies(WebView webview) {
    public boolean acceptThirdPartyCookies(WebView webview) {
        throw new MustOverrideException();
    }