23 lines
585 B
Go
23 lines
585 B
Go
package inspector
|
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
|
|
|
import (
|
|
cdp "github.com/knq/chromedp/cdp"
|
|
)
|
|
|
|
// EventDetached fired when remote debugging connection is about to be
|
|
// terminated. Contains detach reason.
|
|
type EventDetached struct {
|
|
Reason DetachReason `json:"reason"` // The reason why connection has been terminated.
|
|
}
|
|
|
|
// EventTargetCrashed fired when debugging target has crashed.
|
|
type EventTargetCrashed struct{}
|
|
|
|
// EventTypes all event types in the domain.
|
|
var EventTypes = []cdp.MethodType{
|
|
cdp.EventInspectorDetached,
|
|
cdp.EventInspectorTargetCrashed,
|
|
}
|