2017-01-24 15:09:23 +00:00
|
|
|
// Package tethering provides the Chrome Debugging Protocol
|
2017-02-12 04:59:33 +00:00
|
|
|
// commands, types, and events for the Tethering domain.
|
2017-01-24 15:09:23 +00:00
|
|
|
//
|
|
|
|
// The Tethering domain defines methods and events for browser port binding.
|
|
|
|
//
|
|
|
|
// Generated by the chromedp-gen command.
|
|
|
|
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 (
|
|
|
|
"context"
|
|
|
|
|
2017-01-26 07:28:34 +00:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 15:09:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// BindParams request browser port binding.
|
|
|
|
type BindParams struct {
|
|
|
|
Port int64 `json:"port"` // Port number to bind.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bind request browser port binding.
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// port - Port number to bind.
|
|
|
|
func Bind(port int64) *BindParams {
|
|
|
|
return &BindParams{
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Tethering.bind against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *BindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandTetheringBind, p, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnbindParams request browser port unbinding.
|
|
|
|
type UnbindParams struct {
|
|
|
|
Port int64 `json:"port"` // Port number to unbind.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unbind request browser port unbinding.
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// port - Port number to unbind.
|
|
|
|
func Unbind(port int64) *UnbindParams {
|
|
|
|
return &UnbindParams{
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 04:59:33 +00:00
|
|
|
// Do executes Tethering.unbind against the provided context and
|
|
|
|
// target handler.
|
|
|
|
func (p *UnbindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
|
2017-02-14 08:41:23 +00:00
|
|
|
return h.Execute(ctxt, cdp.CommandTetheringUnbind, p, nil)
|
2017-01-24 15:09:23 +00:00
|
|
|
}
|