chromedp/cdp/security/security.go
2017-12-22 10:07:54 +07:00

67 lines
1.9 KiB
Go

// Package security provides the Chrome Debugging Protocol
// commands, types, and events for the Security domain.
//
// Security.
//
// Generated by the chromedp-gen command.
package security
// Code generated by chromedp-gen. DO NOT EDIT.
import (
"context"
cdp "github.com/knq/chromedp/cdp"
)
// DisableParams disables tracking security state changes.
type DisableParams struct{}
// Disable disables tracking security state changes.
func Disable() *DisableParams {
return &DisableParams{}
}
// Do executes Security.disable against the provided context and
// target handler.
func (p *DisableParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
return h.Execute(ctxt, cdp.CommandSecurityDisable, nil, nil)
}
// EnableParams enables tracking security state changes.
type EnableParams struct{}
// Enable enables tracking security state changes.
func Enable() *EnableParams {
return &EnableParams{}
}
// Do executes Security.enable against the provided context and
// target handler.
func (p *EnableParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
return h.Execute(ctxt, cdp.CommandSecurityEnable, nil, nil)
}
// SetIgnoreCertificateErrorsParams enable/disable whether all certificate
// errors should be ignored.
type SetIgnoreCertificateErrorsParams struct {
Ignore bool `json:"ignore"` // If true, all certificate errors will be ignored.
}
// SetIgnoreCertificateErrors enable/disable whether all certificate errors
// should be ignored.
//
// parameters:
// ignore - If true, all certificate errors will be ignored.
func SetIgnoreCertificateErrors(ignore bool) *SetIgnoreCertificateErrorsParams {
return &SetIgnoreCertificateErrorsParams{
Ignore: ignore,
}
}
// Do executes Security.setIgnoreCertificateErrors against the provided context and
// target handler.
func (p *SetIgnoreCertificateErrorsParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
return h.Execute(ctxt, cdp.CommandSecuritySetIgnoreCertificateErrors, p, nil)
}