2017-01-24 22:09:23 +07:00
|
|
|
// Package tethering provides the Chrome Debugging Protocol
|
2017-02-12 11:59:33 +07:00
|
|
|
// commands, types, and events for the Tethering domain.
|
2017-01-24 22:09:23 +07:00
|
|
|
//
|
|
|
|
// The Tethering domain defines methods and events for browser port binding.
|
|
|
|
//
|
|
|
|
// Generated by the chromedp-gen command.
|
|
|
|
package tethering
|
|
|
|
|
2017-07-09 09:05:19 +07:00
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
2017-01-24 22:09:23 +07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2017-01-26 14:28:34 +07:00
|
|
|
cdp "github.com/knq/chromedp/cdp"
|
2017-01-24 22:09:23 +07: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 11:59:33 +07: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 15:41:23 +07:00
|
|
|
return h.Execute(ctxt, cdp.CommandTetheringBind, p, nil)
|
2017-01-24 22:09:23 +07: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 11:59:33 +07: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 15:41:23 +07:00
|
|
|
return h.Execute(ctxt, cdp.CommandTetheringUnbind, p, nil)
|
2017-01-24 22:09:23 +07:00
|
|
|
}
|