2017-01-24 15:09:23 +00:00
|
|
|
package tethering
|
|
|
|
|
2017-07-09 02:05:19 +00:00
|
|
|
// 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
|
|
|
)
|
|
|
|
|
|
|
|
// EventAccepted informs that port was successfully bound and got a specified
|
|
|
|
// connection id.
|
|
|
|
type EventAccepted struct {
|
2017-07-02 11:44:34 +00:00
|
|
|
Port int64 `json:"port"` // Port number that was successfully bound.
|
|
|
|
ConnectionID string `json:"connectionId"` // Connection id to be used.
|
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.EventTetheringAccepted,
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|