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

Commit 003952ba authored by Jonathan Dixon's avatar Jonathan Dixon Committed by Android (Google) Code Review
Browse files

Merge "Fix dumprendertree crash"

parents de09576f 03b433c0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -167,7 +167,8 @@ public class CookieManager {
     *         file scheme URLs
     */
    public static boolean allowFileSchemeCookies() {
        throw new MustOverrideException();
        // TODO: indirect this via the WebViewFactoryProvider.Statics interface. http://b/6379925
        return CookieManagerClassic.allowFileSchemeCookies();
    }

    /**
@@ -181,6 +182,7 @@ public class CookieManager {
     * {@link WebView} or CookieManager instance has been created.
     */
    public static void setAcceptFileSchemeCookies(boolean accept) {
        throw new MustOverrideException();
        // TODO: indirect this via the WebViewFactoryProvider.Statics interface. http://b/6379925
        CookieManagerClassic.setAcceptFileSchemeCookies(accept);
    }
}