We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
android.webkit.WebSettings.setAllowContentAccess
1 parent b70ca77 commit e259ef5Copy full SHA for e259ef5
java/ql/lib/semmle/code/java/frameworks/android/WebView.qll
@@ -78,6 +78,14 @@ class WebViewSetWebViewClientMethod extends Method {
78
}
79
80
81
+/** The method `setAllowContentAccess` of the class `android.webkit.WebSettings` */
82
+class AllowContentAccessMethod extends Method {
83
+ AllowContentAccessMethod() {
84
+ this.getDeclaringType() instanceof TypeWebSettings and
85
+ this.hasName("setAllowContentAccess")
86
+ }
87
+}
88
+
89
/** The method `shouldOverrideUrlLoading` of the class `android.webkit.WebViewClient`. */
90
class ShouldOverrideUrlLoading extends Method {
91
ShouldOverrideUrlLoading() {
0 commit comments