mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
Add cdp support for xpath scrapers (#625)
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
19
vendor/github.com/chromedp/cdproto/security/events.go
generated
vendored
Normal file
19
vendor/github.com/chromedp/cdproto/security/events.go
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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.
|
||||
}
|
||||
Reference in New Issue
Block a user