Java: Add class for android.webkit.WebSettings.setAllowContentAccess

This commit is contained in:
Ed Minnix
2022-10-26 12:33:36 -04:00
parent b70ca77afc
commit e259ef5d1d

View File

@@ -78,6 +78,14 @@ class WebViewSetWebViewClientMethod extends Method {
}
}
/** The method `setAllowContentAccess` of the class `android.webkit.WebSettings` */
class AllowContentAccessMethod extends Method {
AllowContentAccessMethod() {
this.getDeclaringType() instanceof TypeWebSettings and
this.hasName("setAllowContentAccess")
}
}
/** The method `shouldOverrideUrlLoading` of the class `android.webkit.WebViewClient`. */
class ShouldOverrideUrlLoading extends Method {
ShouldOverrideUrlLoading() {