chromedp/runner/runner_bsd.go

12 lines
297 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
// +build darwin freebsd netbsd openbsd
package runner
// ForceKill is a Chrome command line option that forces Chrome to be killed
// when the parent is killed.
//
// Note: sets exec.Cmd.SysProcAttr.Setpgid = true (only for Linux)
func ForceKill(m map[string]interface{}) error {
return nil
}