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

Commit 42a9ee50 authored by Hector Dearman's avatar Hector Dearman
Browse files

Remove synchronized from acceptThirdPartyCookies()

As per API council feedback.

Bug: 17253647
Change-Id: Ide3d4b216f01a96e54111f885813ca8a7c3865ba
parent 6d388af8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36615,7 +36615,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();
    }