You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/webview_flutter/webview_flutter_android/android/src/main/java/io/flutter/plugins/webviewflutter/WebSettingsCompatProxyApi.java
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,10 @@
4
4
5
5
packageio.flutter.plugins.webviewflutter;
6
6
7
+
importandroid.annotation.SuppressLint;
7
8
importandroid.webkit.WebSettings;
8
9
importandroidx.annotation.NonNull;
9
10
importandroidx.webkit.WebSettingsCompat;
10
-
importandroidx.webkit.WebViewFeature;
11
11
12
12
/**
13
13
* Proxy API implementation for {@link WebSettingsCompat}.
@@ -20,10 +20,13 @@ public WebSettingsCompatProxyApi(@NonNull ProxyApiRegistrar pigeonRegistrar) {
20
20
super(pigeonRegistrar);
21
21
}
22
22
23
+
/**
24
+
* This method should only be called if {@link WebViewFeatureProxyApi#isFeatureSupported(String)}
0 commit comments