From fc23be81bd8c443c5235960873ef5aa91cef6660 Mon Sep 17 00:00:00 2001 From: "Torne (Richard Coles)" Date: Mon, 18 May 2020 13:40:40 -0400 Subject: [PATCH] Update deprecation note for Application Cache. Update the deprecation note for WebSettings.setAppCacheEnabled and related to mention the public blog post about the feature being removed. Fixes: 156409857 Test: m offline-sdk-docs Change-Id: I0481937d665f3f16b61b921aa19e306ba8bb16e0 --- core/java/android/webkit/WebSettings.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java index e224e84a56fec..91b9390745ef7 100644 --- a/core/java/android/webkit/WebSettings.java +++ b/core/java/android/webkit/WebSettings.java @@ -1121,6 +1121,7 @@ public abstract class WebSettings { * @deprecated The Application Cache API is deprecated and this method will * become a no-op on all Android versions once support is * removed in Chromium. Consider using Service Workers instead. + * See https://web.dev/appcache-removal/ for more information. */ public abstract void setAppCacheEnabled(boolean flag); @@ -1136,6 +1137,7 @@ public abstract class WebSettings { * @deprecated The Application Cache API is deprecated and this method will * become a no-op on all Android versions once support is * removed in Chromium. Consider using Service Workers instead. + * See https://web.dev/appcache-removal/ for more information. */ public abstract void setAppCachePath(String appCachePath);