stash/vendor/github.com/chromedp/cdproto/security/events.go
bnkai 4373f9bf01
Add cdp support for xpath scrapers (#625)
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
2020-08-04 10:42:40 +10:00

19 lines
1 KiB
Go

package security
// Code generated by cdproto-gen. DO NOT EDIT.
// EventVisibleSecurityStateChanged the security state of the page changed.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Security#event-visibleSecurityStateChanged
type EventVisibleSecurityStateChanged struct {
VisibleSecurityState *VisibleSecurityState `json:"visibleSecurityState"` // Security state information about the page.
}
// EventSecurityStateChanged the security state of the page changed.
//
// See: https://chromedevtools.github.io/devtools-protocol/tot/Security#event-securityStateChanged
type EventSecurityStateChanged struct {
SecurityState State `json:"securityState"` // Security state.
Explanations []*StateExplanation `json:"explanations"` // List of explanations for the security state. If the overall security state is insecure or warning, at least one corresponding explanation should be included.
Summary string `json:"summary,omitempty"` // Overrides user-visible description of the state.
}