Skip to content

Commit

Permalink
values yo
Browse files Browse the repository at this point in the history
  • Loading branch information
bparrishMines committed Dec 21, 2024
1 parent 8ae290e commit 46bc96b
Showing 1 changed file with 4 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,18 +189,10 @@ class WebKitWebViewPlatformController extends WebViewPlatformController {
),
);
},
decidePolicyForNavigationResponse: (
WKNavigationDelegate pigeon_instance,
WKWebView webView,
WKNavigationResponse navigationResponse,
) async {
decidePolicyForNavigationResponse: (_, __, ___) async {
return NavigationResponsePolicy.allow;
},
didReceiveAuthenticationChallenge: (
WKNavigationDelegate pigeon_instance,
WKWebView webView,
URLAuthenticationChallenge challenge,
) async {
didReceiveAuthenticationChallenge: (_, __, ___) async {
return AuthenticationChallengeResponse(
disposition:
UrlSessionAuthChallengeDisposition.performDefaultHandling,
Expand Down Expand Up @@ -728,12 +720,12 @@ class WebViewWidgetProxy {
void Function(WKNavigationDelegate, WKWebView webView)?
webViewWebContentProcessDidTerminate,
required Future<NavigationResponsePolicy> Function(
WKNavigationDelegate pigeon_instance,
WKNavigationDelegate,
WKWebView webView,
WKNavigationResponse navigationResponse,
) decidePolicyForNavigationResponse,
required Future<AuthenticationChallengeResponse> Function(
WKNavigationDelegate pigeon_instance,
WKNavigationDelegate,
WKWebView webView,
URLAuthenticationChallenge challenge,
) didReceiveAuthenticationChallenge,
Expand Down

0 comments on commit 46bc96b

Please sign in to comment.