chromedp/cdp/tethering/tethering.go

58 lines
1.4 KiB
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
// Package tethering provides the Chrome Debugging Protocol
// 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
// 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,
}
}
// Do executes Tethering.bind against the provided context and
// target handler.
func (p *BindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
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,
}
}
// Do executes Tethering.unbind against the provided context and
// target handler.
func (p *UnbindParams) Do(ctxt context.Context, h cdp.Handler) (err error) {
return h.Execute(ctxt, cdp.CommandTetheringUnbind, p, nil)
2017-01-24 15:09:23 +00:00
}