mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
17 lines
369 B
Java
Generated
17 lines
369 B
Java
Generated
// Generated automatically from android.webkit.WebResourceRequest for testing purposes
|
|
|
|
package android.webkit;
|
|
|
|
import android.net.Uri;
|
|
import java.util.Map;
|
|
|
|
public interface WebResourceRequest
|
|
{
|
|
Map<String, String> getRequestHeaders();
|
|
String getMethod();
|
|
Uri getUrl();
|
|
boolean hasGesture();
|
|
boolean isForMainFrame();
|
|
boolean isRedirect();
|
|
}
|