chromedp/cdp/performance/events.go

19 lines
432 B
Go
Raw Normal View History

2017-08-20 23:56:21 +00:00
package performance
// Code generated by chromedp-gen. DO NOT EDIT.
import (
cdp "github.com/knq/chromedp/cdp"
)
// EventMetrics current values of the metrics.
type EventMetrics struct {
Metrics []*Metric `json:"metrics"` // Current values of the metrics.
Title string `json:"title"` // Timestamp title.
}
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventPerformanceMetrics,
}