File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,8 @@ protected void flushCookieStore() {
167167 * file scheme URLs
168168 */
169169 public static boolean allowFileSchemeCookies () {
170- throw new MustOverrideException ();
170+ // TODO: indirect this via the WebViewFactoryProvider.Statics interface. http://b/6379925
171+ return CookieManagerClassic .allowFileSchemeCookies ();
171172 }
172173
173174 /**
@@ -181,6 +182,7 @@ public static boolean allowFileSchemeCookies() {
181182 * {@link WebView} or CookieManager instance has been created.
182183 */
183184 public static void setAcceptFileSchemeCookies (boolean accept ) {
184- throw new MustOverrideException ();
185+ // TODO: indirect this via the WebViewFactoryProvider.Statics interface. http://b/6379925
186+ CookieManagerClassic .setAcceptFileSchemeCookies (accept );
185187 }
186188}
You can’t perform that action at this time.
0 commit comments