2017-01-24 15:09:23 +00:00
|
|
|
// Package security provides the Chrome Debugging Protocol
|
2017-02-12 04:59:33 +00:00
|
|
|
// commands, types, and events for the Security domain.
|
2017-01-24 15:09:23 +00:00
|
|
|
//
|
|
|
|
// Security.
|
|
|
|
//
|
|
|
|
// Generated by the chromedp-gen command.
|
|
|
|
package security
|
|
|
|
|
|
|
|
// AUTOGENERATED. DO NOT EDIT.
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 15:09:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// EnableParams enables tracking security state changes.
|
|
|
|
type EnableParams struct{}
|
|
|
|
|
|
|
|
// Enable enables tracking security state changes.
|
|
|
|
func Enable() *EnableParams {
|
|
|
|
return &EnableParams{}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Security.enable against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *EnableParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandSecurityEnable, nil, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DisableParams disables tracking security state changes.
|
|
|
|
type DisableParams struct{}
|
|
|
|
|
|
|
|
// Disable disables tracking security state changes.
|
|
|
|
func Disable() *DisableParams {
|
|
|
|
return &DisableParams{}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Security.disable against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *DisableParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandSecurityDisable, nil, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ShowCertificateViewerParams displays native dialog with the certificate
|
|
|
|
// details.
|
|
|
|
type ShowCertificateViewerParams struct{}
|
|
|
|
|
|
|
|
// ShowCertificateViewer displays native dialog with the certificate details.
|
|
|
|
func ShowCertificateViewer() *ShowCertificateViewerParams {
|
|
|
|
return &ShowCertificateViewerParams{}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Security.showCertificateViewer against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *ShowCertificateViewerParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandSecurityShowCertificateViewer, nil, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|