chromedp/cdp/log/events.go

18 lines
347 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
package log
// Code generated by chromedp-gen. DO NOT EDIT.
2017-01-24 15:09:23 +00:00
import (
2017-01-26 07:28:34 +00:00
cdp "github.com/knq/chromedp/cdp"
2017-01-24 15:09:23 +00:00
)
// EventEntryAdded issued when new message was logged.
type EventEntryAdded struct {
Entry *Entry `json:"entry"` // The entry.
2017-01-24 15:09:23 +00:00
}
2017-01-26 07:28:34 +00:00
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventLogEntryAdded,
2017-01-24 15:09:23 +00:00
}