data class MixedContentIssueDetails
<init> |
MixedContentIssueDetails(resourceType: MixedContentResourceType? = null, resolutionStatus: MixedContentResolutionStatus, insecureURL: String, mainResourceURL: String, request: AffectedRequest? = null, frame: AffectedFrame? = null) |
frame |
Optional because not every mixed content issue is necessarily linked to a frame. val frame: AffectedFrame? |
insecureURL |
The unsafe http url causing the mixed content issue. val insecureURL: String |
mainResourceURL |
The url responsible for the call to an unsafe url. val mainResourceURL: String |
request |
The mixed content request. Does not always exist (e.g. for unsafe form submission urls). val request: AffectedRequest? |
resolutionStatus |
The way the mixed content issue is being resolved. val resolutionStatus: MixedContentResolutionStatus |
resourceType |
The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination val resourceType: MixedContentResourceType? |