chromedp/cdp/tethering/events.go
Kenneth Shaw 7fbfef7cf1 Adding synthesized "HAR" domain to protocol generation
* Added "HAR" domain
* Fixed issue with omitempty on domain types
2017-07-02 18:44:34 +07:00

20 lines
495 B
Go

package tethering
// AUTOGENERATED. DO NOT EDIT.
import (
cdp "github.com/knq/chromedp/cdp"
)
// EventAccepted informs that port was successfully bound and got a specified
// connection id.
type EventAccepted struct {
Port int64 `json:"port"` // Port number that was successfully bound.
ConnectionID string `json:"connectionId"` // Connection id to be used.
}
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventTetheringAccepted,
}