- Updating documentation for chromedp-gen to point to standard versions
  of easyjson/quicktemplate (qtc) and added information about goimports
- Replaced {% end %} non-standard quicktemplate tags with the
  appropriate closing tags
- Updated to latest chrome protocol.json definition
- Regenerated cdp protocol after switching to standard easyjson/qtc
		
	
			
		
			
				
	
	
		
			4870 lines
		
	
	
		
			115 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			4870 lines
		
	
	
		
			115 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // AUTOGENERATED FILE: easyjson marshaler/unmarshalers.
 | |
| 
 | |
| package page
 | |
| 
 | |
| import (
 | |
| 	json "encoding/json"
 | |
| 	cdp "github.com/knq/chromedp/cdp"
 | |
| 	debugger "github.com/knq/chromedp/cdp/debugger"
 | |
| 	easyjson "github.com/mailru/easyjson"
 | |
| 	jlexer "github.com/mailru/easyjson/jlexer"
 | |
| 	jwriter "github.com/mailru/easyjson/jwriter"
 | |
| )
 | |
| 
 | |
| // suppress unused package warning
 | |
| var (
 | |
| 	_ *json.RawMessage
 | |
| 	_ *jlexer.Lexer
 | |
| 	_ *jwriter.Writer
 | |
| 	_ easyjson.Marshaler
 | |
| )
 | |
| 
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage(in *jlexer.Lexer, out *VisualViewport) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "offsetX":
 | |
| 			out.OffsetX = float64(in.Float64())
 | |
| 		case "offsetY":
 | |
| 			out.OffsetY = float64(in.Float64())
 | |
| 		case "pageX":
 | |
| 			out.PageX = float64(in.Float64())
 | |
| 		case "pageY":
 | |
| 			out.PageY = float64(in.Float64())
 | |
| 		case "clientWidth":
 | |
| 			out.ClientWidth = float64(in.Float64())
 | |
| 		case "clientHeight":
 | |
| 			out.ClientHeight = float64(in.Float64())
 | |
| 		case "scale":
 | |
| 			out.Scale = float64(in.Float64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage(out *jwriter.Writer, in VisualViewport) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.OffsetX != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"offsetX\":")
 | |
| 		out.Float64(float64(in.OffsetX))
 | |
| 	}
 | |
| 	if in.OffsetY != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"offsetY\":")
 | |
| 		out.Float64(float64(in.OffsetY))
 | |
| 	}
 | |
| 	if in.PageX != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"pageX\":")
 | |
| 		out.Float64(float64(in.PageX))
 | |
| 	}
 | |
| 	if in.PageY != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"pageY\":")
 | |
| 		out.Float64(float64(in.PageY))
 | |
| 	}
 | |
| 	if in.ClientWidth != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"clientWidth\":")
 | |
| 		out.Float64(float64(in.ClientWidth))
 | |
| 	}
 | |
| 	if in.ClientHeight != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"clientHeight\":")
 | |
| 		out.Float64(float64(in.ClientHeight))
 | |
| 	}
 | |
| 	if in.Scale != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"scale\":")
 | |
| 		out.Float64(float64(in.Scale))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v VisualViewport) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v VisualViewport) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *VisualViewport) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *VisualViewport) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage1(in *jlexer.Lexer, out *StopScreencastParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage1(out *jwriter.Writer, in StopScreencastParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v StopScreencastParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage1(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v StopScreencastParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage1(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *StopScreencastParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage1(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *StopScreencastParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage1(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage2(in *jlexer.Lexer, out *StopLoadingParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage2(out *jwriter.Writer, in StopLoadingParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v StopLoadingParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage2(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v StopLoadingParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage2(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *StopLoadingParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage2(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *StopLoadingParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage2(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage3(in *jlexer.Lexer, out *StartScreencastParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "format":
 | |
| 			(out.Format).UnmarshalEasyJSON(in)
 | |
| 		case "quality":
 | |
| 			out.Quality = int64(in.Int64())
 | |
| 		case "maxWidth":
 | |
| 			out.MaxWidth = int64(in.Int64())
 | |
| 		case "maxHeight":
 | |
| 			out.MaxHeight = int64(in.Int64())
 | |
| 		case "everyNthFrame":
 | |
| 			out.EveryNthFrame = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage3(out *jwriter.Writer, in StartScreencastParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Format != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"format\":")
 | |
| 		(in.Format).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	if in.Quality != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"quality\":")
 | |
| 		out.Int64(int64(in.Quality))
 | |
| 	}
 | |
| 	if in.MaxWidth != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"maxWidth\":")
 | |
| 		out.Int64(int64(in.MaxWidth))
 | |
| 	}
 | |
| 	if in.MaxHeight != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"maxHeight\":")
 | |
| 		out.Int64(int64(in.MaxHeight))
 | |
| 	}
 | |
| 	if in.EveryNthFrame != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"everyNthFrame\":")
 | |
| 		out.Int64(int64(in.EveryNthFrame))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v StartScreencastParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage3(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v StartScreencastParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage3(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *StartScreencastParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage3(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *StartScreencastParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage3(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage4(in *jlexer.Lexer, out *SetDocumentContentParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		case "html":
 | |
| 			out.HTML = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage4(out *jwriter.Writer, in SetDocumentContentParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"frameId\":")
 | |
| 	out.String(string(in.FrameID))
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"html\":")
 | |
| 	out.String(string(in.HTML))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SetDocumentContentParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage4(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SetDocumentContentParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage4(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SetDocumentContentParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage4(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SetDocumentContentParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage4(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage5(in *jlexer.Lexer, out *SetControlNavigationsParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "enabled":
 | |
| 			out.Enabled = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage5(out *jwriter.Writer, in SetControlNavigationsParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"enabled\":")
 | |
| 	out.Bool(bool(in.Enabled))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SetControlNavigationsParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage5(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SetControlNavigationsParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage5(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SetControlNavigationsParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage5(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SetControlNavigationsParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage5(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage6(in *jlexer.Lexer, out *SetColorPickerEnabledParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "enabled":
 | |
| 			out.Enabled = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage6(out *jwriter.Writer, in SetColorPickerEnabledParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"enabled\":")
 | |
| 	out.Bool(bool(in.Enabled))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SetColorPickerEnabledParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage6(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SetColorPickerEnabledParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage6(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SetColorPickerEnabledParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage6(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SetColorPickerEnabledParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage6(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage7(in *jlexer.Lexer, out *SetAutoAttachToCreatedPagesParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "autoAttach":
 | |
| 			out.AutoAttach = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage7(out *jwriter.Writer, in SetAutoAttachToCreatedPagesParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"autoAttach\":")
 | |
| 	out.Bool(bool(in.AutoAttach))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SetAutoAttachToCreatedPagesParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage7(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SetAutoAttachToCreatedPagesParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage7(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SetAutoAttachToCreatedPagesParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage7(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SetAutoAttachToCreatedPagesParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage7(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage8(in *jlexer.Lexer, out *SearchInResourceReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "result":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Result = nil
 | |
| 			} else {
 | |
| 				in.Delim('[')
 | |
| 				if out.Result == nil {
 | |
| 					if !in.IsDelim(']') {
 | |
| 						out.Result = make([]*debugger.SearchMatch, 0, 8)
 | |
| 					} else {
 | |
| 						out.Result = []*debugger.SearchMatch{}
 | |
| 					}
 | |
| 				} else {
 | |
| 					out.Result = (out.Result)[:0]
 | |
| 				}
 | |
| 				for !in.IsDelim(']') {
 | |
| 					var v1 *debugger.SearchMatch
 | |
| 					if in.IsNull() {
 | |
| 						in.Skip()
 | |
| 						v1 = nil
 | |
| 					} else {
 | |
| 						if v1 == nil {
 | |
| 							v1 = new(debugger.SearchMatch)
 | |
| 						}
 | |
| 						(*v1).UnmarshalEasyJSON(in)
 | |
| 					}
 | |
| 					out.Result = append(out.Result, v1)
 | |
| 					in.WantComma()
 | |
| 				}
 | |
| 				in.Delim(']')
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage8(out *jwriter.Writer, in SearchInResourceReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if len(in.Result) != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"result\":")
 | |
| 		if in.Result == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			out.RawByte('[')
 | |
| 			for v2, v3 := range in.Result {
 | |
| 				if v2 > 0 {
 | |
| 					out.RawByte(',')
 | |
| 				}
 | |
| 				if v3 == nil {
 | |
| 					out.RawString("null")
 | |
| 				} else {
 | |
| 					(*v3).MarshalEasyJSON(out)
 | |
| 				}
 | |
| 			}
 | |
| 			out.RawByte(']')
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SearchInResourceReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage8(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SearchInResourceReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage8(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SearchInResourceReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage8(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SearchInResourceReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage8(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage9(in *jlexer.Lexer, out *SearchInResourceParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		case "query":
 | |
| 			out.Query = string(in.String())
 | |
| 		case "caseSensitive":
 | |
| 			out.CaseSensitive = bool(in.Bool())
 | |
| 		case "isRegex":
 | |
| 			out.IsRegex = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage9(out *jwriter.Writer, in SearchInResourceParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"frameId\":")
 | |
| 	out.String(string(in.FrameID))
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"url\":")
 | |
| 	out.String(string(in.URL))
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"query\":")
 | |
| 	out.String(string(in.Query))
 | |
| 	if in.CaseSensitive {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"caseSensitive\":")
 | |
| 		out.Bool(bool(in.CaseSensitive))
 | |
| 	}
 | |
| 	if in.IsRegex {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"isRegex\":")
 | |
| 		out.Bool(bool(in.IsRegex))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v SearchInResourceParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage9(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v SearchInResourceParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage9(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *SearchInResourceParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage9(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *SearchInResourceParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage9(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage10(in *jlexer.Lexer, out *ScreencastFrameMetadata) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "offsetTop":
 | |
| 			out.OffsetTop = float64(in.Float64())
 | |
| 		case "pageScaleFactor":
 | |
| 			out.PageScaleFactor = float64(in.Float64())
 | |
| 		case "deviceWidth":
 | |
| 			out.DeviceWidth = float64(in.Float64())
 | |
| 		case "deviceHeight":
 | |
| 			out.DeviceHeight = float64(in.Float64())
 | |
| 		case "scrollOffsetX":
 | |
| 			out.ScrollOffsetX = float64(in.Float64())
 | |
| 		case "scrollOffsetY":
 | |
| 			out.ScrollOffsetY = float64(in.Float64())
 | |
| 		case "timestamp":
 | |
| 			(out.Timestamp).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage10(out *jwriter.Writer, in ScreencastFrameMetadata) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.OffsetTop != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"offsetTop\":")
 | |
| 		out.Float64(float64(in.OffsetTop))
 | |
| 	}
 | |
| 	if in.PageScaleFactor != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"pageScaleFactor\":")
 | |
| 		out.Float64(float64(in.PageScaleFactor))
 | |
| 	}
 | |
| 	if in.DeviceWidth != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"deviceWidth\":")
 | |
| 		out.Float64(float64(in.DeviceWidth))
 | |
| 	}
 | |
| 	if in.DeviceHeight != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"deviceHeight\":")
 | |
| 		out.Float64(float64(in.DeviceHeight))
 | |
| 	}
 | |
| 	if in.ScrollOffsetX != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"scrollOffsetX\":")
 | |
| 		out.Float64(float64(in.ScrollOffsetX))
 | |
| 	}
 | |
| 	if in.ScrollOffsetY != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"scrollOffsetY\":")
 | |
| 		out.Float64(float64(in.ScrollOffsetY))
 | |
| 	}
 | |
| 	if true {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"timestamp\":")
 | |
| 		(in.Timestamp).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v ScreencastFrameMetadata) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage10(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v ScreencastFrameMetadata) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage10(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *ScreencastFrameMetadata) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage10(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *ScreencastFrameMetadata) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage10(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage11(in *jlexer.Lexer, out *ScreencastFrameAckParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "sessionId":
 | |
| 			out.SessionID = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage11(out *jwriter.Writer, in ScreencastFrameAckParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"sessionId\":")
 | |
| 	out.Int64(int64(in.SessionID))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v ScreencastFrameAckParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage11(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v ScreencastFrameAckParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage11(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *ScreencastFrameAckParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage11(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *ScreencastFrameAckParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage11(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage12(in *jlexer.Lexer, out *RequestAppBannerParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage12(out *jwriter.Writer, in RequestAppBannerParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v RequestAppBannerParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage12(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v RequestAppBannerParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage12(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *RequestAppBannerParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage12(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *RequestAppBannerParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage12(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage13(in *jlexer.Lexer, out *RemoveScriptToEvaluateOnLoadParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "identifier":
 | |
| 			out.Identifier = ScriptIdentifier(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage13(out *jwriter.Writer, in RemoveScriptToEvaluateOnLoadParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"identifier\":")
 | |
| 	out.String(string(in.Identifier))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v RemoveScriptToEvaluateOnLoadParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage13(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v RemoveScriptToEvaluateOnLoadParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage13(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *RemoveScriptToEvaluateOnLoadParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage13(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *RemoveScriptToEvaluateOnLoadParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage13(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage14(in *jlexer.Lexer, out *ReloadParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "ignoreCache":
 | |
| 			out.IgnoreCache = bool(in.Bool())
 | |
| 		case "scriptToEvaluateOnLoad":
 | |
| 			out.ScriptToEvaluateOnLoad = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage14(out *jwriter.Writer, in ReloadParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.IgnoreCache {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"ignoreCache\":")
 | |
| 		out.Bool(bool(in.IgnoreCache))
 | |
| 	}
 | |
| 	if in.ScriptToEvaluateOnLoad != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"scriptToEvaluateOnLoad\":")
 | |
| 		out.String(string(in.ScriptToEvaluateOnLoad))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v ReloadParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage14(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v ReloadParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage14(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *ReloadParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage14(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *ReloadParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage14(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage15(in *jlexer.Lexer, out *ProcessNavigationParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "response":
 | |
| 			(out.Response).UnmarshalEasyJSON(in)
 | |
| 		case "navigationId":
 | |
| 			out.NavigationID = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage15(out *jwriter.Writer, in ProcessNavigationParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"response\":")
 | |
| 	(in.Response).MarshalEasyJSON(out)
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"navigationId\":")
 | |
| 	out.Int64(int64(in.NavigationID))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v ProcessNavigationParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage15(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v ProcessNavigationParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage15(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *ProcessNavigationParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage15(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *ProcessNavigationParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage15(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage16(in *jlexer.Lexer, out *NavigationEntry) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "id":
 | |
| 			out.ID = int64(in.Int64())
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		case "title":
 | |
| 			out.Title = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage16(out *jwriter.Writer, in NavigationEntry) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.ID != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"id\":")
 | |
| 		out.Int64(int64(in.ID))
 | |
| 	}
 | |
| 	if in.URL != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"url\":")
 | |
| 		out.String(string(in.URL))
 | |
| 	}
 | |
| 	if in.Title != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"title\":")
 | |
| 		out.String(string(in.Title))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v NavigationEntry) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage16(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v NavigationEntry) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage16(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *NavigationEntry) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage16(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *NavigationEntry) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage16(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage17(in *jlexer.Lexer, out *NavigateToHistoryEntryParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "entryId":
 | |
| 			out.EntryID = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage17(out *jwriter.Writer, in NavigateToHistoryEntryParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"entryId\":")
 | |
| 	out.Int64(int64(in.EntryID))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v NavigateToHistoryEntryParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage17(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v NavigateToHistoryEntryParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage17(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *NavigateToHistoryEntryParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage17(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *NavigateToHistoryEntryParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage17(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage18(in *jlexer.Lexer, out *NavigateReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage18(out *jwriter.Writer, in NavigateReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v NavigateReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage18(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v NavigateReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage18(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *NavigateReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage18(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *NavigateReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage18(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage19(in *jlexer.Lexer, out *NavigateParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage19(out *jwriter.Writer, in NavigateParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"url\":")
 | |
| 	out.String(string(in.URL))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v NavigateParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage19(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v NavigateParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage19(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *NavigateParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage19(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *NavigateParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage19(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage20(in *jlexer.Lexer, out *LayoutViewport) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "pageX":
 | |
| 			out.PageX = int64(in.Int64())
 | |
| 		case "pageY":
 | |
| 			out.PageY = int64(in.Int64())
 | |
| 		case "clientWidth":
 | |
| 			out.ClientWidth = int64(in.Int64())
 | |
| 		case "clientHeight":
 | |
| 			out.ClientHeight = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage20(out *jwriter.Writer, in LayoutViewport) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.PageX != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"pageX\":")
 | |
| 		out.Int64(int64(in.PageX))
 | |
| 	}
 | |
| 	if in.PageY != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"pageY\":")
 | |
| 		out.Int64(int64(in.PageY))
 | |
| 	}
 | |
| 	if in.ClientWidth != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"clientWidth\":")
 | |
| 		out.Int64(int64(in.ClientWidth))
 | |
| 	}
 | |
| 	if in.ClientHeight != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"clientHeight\":")
 | |
| 		out.Int64(int64(in.ClientHeight))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v LayoutViewport) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage20(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v LayoutViewport) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage20(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *LayoutViewport) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage20(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *LayoutViewport) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage20(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage21(in *jlexer.Lexer, out *HandleJavaScriptDialogParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "accept":
 | |
| 			out.Accept = bool(in.Bool())
 | |
| 		case "promptText":
 | |
| 			out.PromptText = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage21(out *jwriter.Writer, in HandleJavaScriptDialogParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"accept\":")
 | |
| 	out.Bool(bool(in.Accept))
 | |
| 	if in.PromptText != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"promptText\":")
 | |
| 		out.String(string(in.PromptText))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v HandleJavaScriptDialogParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage21(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v HandleJavaScriptDialogParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage21(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *HandleJavaScriptDialogParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage21(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *HandleJavaScriptDialogParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage21(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage22(in *jlexer.Lexer, out *GetResourceTreeReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameTree":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.FrameTree = nil
 | |
| 			} else {
 | |
| 				if out.FrameTree == nil {
 | |
| 					out.FrameTree = new(FrameResourceTree)
 | |
| 				}
 | |
| 				(*out.FrameTree).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage22(out *jwriter.Writer, in GetResourceTreeReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameTree != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameTree\":")
 | |
| 		if in.FrameTree == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.FrameTree).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetResourceTreeReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage22(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetResourceTreeReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage22(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetResourceTreeReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage22(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetResourceTreeReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage22(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage23(in *jlexer.Lexer, out *GetResourceTreeParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage23(out *jwriter.Writer, in GetResourceTreeParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetResourceTreeParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage23(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetResourceTreeParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage23(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetResourceTreeParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage23(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetResourceTreeParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage23(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage24(in *jlexer.Lexer, out *GetResourceContentReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "content":
 | |
| 			out.Content = string(in.String())
 | |
| 		case "base64Encoded":
 | |
| 			out.Base64encoded = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage24(out *jwriter.Writer, in GetResourceContentReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Content != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"content\":")
 | |
| 		out.String(string(in.Content))
 | |
| 	}
 | |
| 	if in.Base64encoded {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"base64Encoded\":")
 | |
| 		out.Bool(bool(in.Base64encoded))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetResourceContentReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage24(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetResourceContentReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage24(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetResourceContentReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage24(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetResourceContentReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage24(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage25(in *jlexer.Lexer, out *GetResourceContentParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage25(out *jwriter.Writer, in GetResourceContentParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"frameId\":")
 | |
| 	out.String(string(in.FrameID))
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"url\":")
 | |
| 	out.String(string(in.URL))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetResourceContentParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage25(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetResourceContentParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage25(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetResourceContentParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage25(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetResourceContentParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage25(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage26(in *jlexer.Lexer, out *GetNavigationHistoryReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "currentIndex":
 | |
| 			out.CurrentIndex = int64(in.Int64())
 | |
| 		case "entries":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Entries = nil
 | |
| 			} else {
 | |
| 				in.Delim('[')
 | |
| 				if out.Entries == nil {
 | |
| 					if !in.IsDelim(']') {
 | |
| 						out.Entries = make([]*NavigationEntry, 0, 8)
 | |
| 					} else {
 | |
| 						out.Entries = []*NavigationEntry{}
 | |
| 					}
 | |
| 				} else {
 | |
| 					out.Entries = (out.Entries)[:0]
 | |
| 				}
 | |
| 				for !in.IsDelim(']') {
 | |
| 					var v4 *NavigationEntry
 | |
| 					if in.IsNull() {
 | |
| 						in.Skip()
 | |
| 						v4 = nil
 | |
| 					} else {
 | |
| 						if v4 == nil {
 | |
| 							v4 = new(NavigationEntry)
 | |
| 						}
 | |
| 						(*v4).UnmarshalEasyJSON(in)
 | |
| 					}
 | |
| 					out.Entries = append(out.Entries, v4)
 | |
| 					in.WantComma()
 | |
| 				}
 | |
| 				in.Delim(']')
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage26(out *jwriter.Writer, in GetNavigationHistoryReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.CurrentIndex != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"currentIndex\":")
 | |
| 		out.Int64(int64(in.CurrentIndex))
 | |
| 	}
 | |
| 	if len(in.Entries) != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"entries\":")
 | |
| 		if in.Entries == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			out.RawByte('[')
 | |
| 			for v5, v6 := range in.Entries {
 | |
| 				if v5 > 0 {
 | |
| 					out.RawByte(',')
 | |
| 				}
 | |
| 				if v6 == nil {
 | |
| 					out.RawString("null")
 | |
| 				} else {
 | |
| 					(*v6).MarshalEasyJSON(out)
 | |
| 				}
 | |
| 			}
 | |
| 			out.RawByte(']')
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetNavigationHistoryReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage26(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetNavigationHistoryReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage26(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetNavigationHistoryReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage26(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetNavigationHistoryReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage26(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage27(in *jlexer.Lexer, out *GetNavigationHistoryParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage27(out *jwriter.Writer, in GetNavigationHistoryParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetNavigationHistoryParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage27(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetNavigationHistoryParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage27(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetNavigationHistoryParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage27(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetNavigationHistoryParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage27(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage28(in *jlexer.Lexer, out *GetLayoutMetricsReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "layoutViewport":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.LayoutViewport = nil
 | |
| 			} else {
 | |
| 				if out.LayoutViewport == nil {
 | |
| 					out.LayoutViewport = new(LayoutViewport)
 | |
| 				}
 | |
| 				(*out.LayoutViewport).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		case "visualViewport":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.VisualViewport = nil
 | |
| 			} else {
 | |
| 				if out.VisualViewport == nil {
 | |
| 					out.VisualViewport = new(VisualViewport)
 | |
| 				}
 | |
| 				(*out.VisualViewport).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage28(out *jwriter.Writer, in GetLayoutMetricsReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.LayoutViewport != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"layoutViewport\":")
 | |
| 		if in.LayoutViewport == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.LayoutViewport).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	if in.VisualViewport != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"visualViewport\":")
 | |
| 		if in.VisualViewport == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.VisualViewport).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetLayoutMetricsReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage28(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetLayoutMetricsReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage28(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetLayoutMetricsReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage28(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetLayoutMetricsReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage28(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage29(in *jlexer.Lexer, out *GetLayoutMetricsParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage29(out *jwriter.Writer, in GetLayoutMetricsParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetLayoutMetricsParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage29(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetLayoutMetricsParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage29(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetLayoutMetricsParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage29(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetLayoutMetricsParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage29(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage30(in *jlexer.Lexer, out *GetAppManifestReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		case "errors":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Errors = nil
 | |
| 			} else {
 | |
| 				in.Delim('[')
 | |
| 				if out.Errors == nil {
 | |
| 					if !in.IsDelim(']') {
 | |
| 						out.Errors = make([]*AppManifestError, 0, 8)
 | |
| 					} else {
 | |
| 						out.Errors = []*AppManifestError{}
 | |
| 					}
 | |
| 				} else {
 | |
| 					out.Errors = (out.Errors)[:0]
 | |
| 				}
 | |
| 				for !in.IsDelim(']') {
 | |
| 					var v7 *AppManifestError
 | |
| 					if in.IsNull() {
 | |
| 						in.Skip()
 | |
| 						v7 = nil
 | |
| 					} else {
 | |
| 						if v7 == nil {
 | |
| 							v7 = new(AppManifestError)
 | |
| 						}
 | |
| 						(*v7).UnmarshalEasyJSON(in)
 | |
| 					}
 | |
| 					out.Errors = append(out.Errors, v7)
 | |
| 					in.WantComma()
 | |
| 				}
 | |
| 				in.Delim(']')
 | |
| 			}
 | |
| 		case "data":
 | |
| 			out.Data = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage30(out *jwriter.Writer, in GetAppManifestReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.URL != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"url\":")
 | |
| 		out.String(string(in.URL))
 | |
| 	}
 | |
| 	if len(in.Errors) != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"errors\":")
 | |
| 		if in.Errors == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			out.RawByte('[')
 | |
| 			for v8, v9 := range in.Errors {
 | |
| 				if v8 > 0 {
 | |
| 					out.RawByte(',')
 | |
| 				}
 | |
| 				if v9 == nil {
 | |
| 					out.RawString("null")
 | |
| 				} else {
 | |
| 					(*v9).MarshalEasyJSON(out)
 | |
| 				}
 | |
| 			}
 | |
| 			out.RawByte(']')
 | |
| 		}
 | |
| 	}
 | |
| 	if in.Data != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"data\":")
 | |
| 		out.String(string(in.Data))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetAppManifestReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage30(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetAppManifestReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage30(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetAppManifestReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage30(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetAppManifestReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage30(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage31(in *jlexer.Lexer, out *GetAppManifestParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage31(out *jwriter.Writer, in GetAppManifestParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v GetAppManifestParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage31(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v GetAppManifestParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage31(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *GetAppManifestParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage31(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *GetAppManifestParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage31(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage32(in *jlexer.Lexer, out *FrameResourceTree) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frame":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Frame = nil
 | |
| 			} else {
 | |
| 				if out.Frame == nil {
 | |
| 					out.Frame = new(cdp.Frame)
 | |
| 				}
 | |
| 				(*out.Frame).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		case "childFrames":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.ChildFrames = nil
 | |
| 			} else {
 | |
| 				in.Delim('[')
 | |
| 				if out.ChildFrames == nil {
 | |
| 					if !in.IsDelim(']') {
 | |
| 						out.ChildFrames = make([]*FrameResourceTree, 0, 8)
 | |
| 					} else {
 | |
| 						out.ChildFrames = []*FrameResourceTree{}
 | |
| 					}
 | |
| 				} else {
 | |
| 					out.ChildFrames = (out.ChildFrames)[:0]
 | |
| 				}
 | |
| 				for !in.IsDelim(']') {
 | |
| 					var v10 *FrameResourceTree
 | |
| 					if in.IsNull() {
 | |
| 						in.Skip()
 | |
| 						v10 = nil
 | |
| 					} else {
 | |
| 						if v10 == nil {
 | |
| 							v10 = new(FrameResourceTree)
 | |
| 						}
 | |
| 						(*v10).UnmarshalEasyJSON(in)
 | |
| 					}
 | |
| 					out.ChildFrames = append(out.ChildFrames, v10)
 | |
| 					in.WantComma()
 | |
| 				}
 | |
| 				in.Delim(']')
 | |
| 			}
 | |
| 		case "resources":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Resources = nil
 | |
| 			} else {
 | |
| 				in.Delim('[')
 | |
| 				if out.Resources == nil {
 | |
| 					if !in.IsDelim(']') {
 | |
| 						out.Resources = make([]*FrameResource, 0, 8)
 | |
| 					} else {
 | |
| 						out.Resources = []*FrameResource{}
 | |
| 					}
 | |
| 				} else {
 | |
| 					out.Resources = (out.Resources)[:0]
 | |
| 				}
 | |
| 				for !in.IsDelim(']') {
 | |
| 					var v11 *FrameResource
 | |
| 					if in.IsNull() {
 | |
| 						in.Skip()
 | |
| 						v11 = nil
 | |
| 					} else {
 | |
| 						if v11 == nil {
 | |
| 							v11 = new(FrameResource)
 | |
| 						}
 | |
| 						(*v11).UnmarshalEasyJSON(in)
 | |
| 					}
 | |
| 					out.Resources = append(out.Resources, v11)
 | |
| 					in.WantComma()
 | |
| 				}
 | |
| 				in.Delim(']')
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage32(out *jwriter.Writer, in FrameResourceTree) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Frame != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frame\":")
 | |
| 		if in.Frame == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.Frame).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	if len(in.ChildFrames) != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"childFrames\":")
 | |
| 		if in.ChildFrames == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			out.RawByte('[')
 | |
| 			for v12, v13 := range in.ChildFrames {
 | |
| 				if v12 > 0 {
 | |
| 					out.RawByte(',')
 | |
| 				}
 | |
| 				if v13 == nil {
 | |
| 					out.RawString("null")
 | |
| 				} else {
 | |
| 					(*v13).MarshalEasyJSON(out)
 | |
| 				}
 | |
| 			}
 | |
| 			out.RawByte(']')
 | |
| 		}
 | |
| 	}
 | |
| 	if len(in.Resources) != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"resources\":")
 | |
| 		if in.Resources == nil && (out.Flags&jwriter.NilSliceAsEmpty) == 0 {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			out.RawByte('[')
 | |
| 			for v14, v15 := range in.Resources {
 | |
| 				if v14 > 0 {
 | |
| 					out.RawByte(',')
 | |
| 				}
 | |
| 				if v15 == nil {
 | |
| 					out.RawString("null")
 | |
| 				} else {
 | |
| 					(*v15).MarshalEasyJSON(out)
 | |
| 				}
 | |
| 			}
 | |
| 			out.RawByte(']')
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v FrameResourceTree) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage32(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v FrameResourceTree) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage32(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *FrameResourceTree) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage32(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *FrameResourceTree) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage32(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage33(in *jlexer.Lexer, out *FrameResource) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		case "type":
 | |
| 			(out.Type).UnmarshalEasyJSON(in)
 | |
| 		case "mimeType":
 | |
| 			out.MimeType = string(in.String())
 | |
| 		case "lastModified":
 | |
| 			(out.LastModified).UnmarshalEasyJSON(in)
 | |
| 		case "contentSize":
 | |
| 			out.ContentSize = float64(in.Float64())
 | |
| 		case "failed":
 | |
| 			out.Failed = bool(in.Bool())
 | |
| 		case "canceled":
 | |
| 			out.Canceled = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage33(out *jwriter.Writer, in FrameResource) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.URL != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"url\":")
 | |
| 		out.String(string(in.URL))
 | |
| 	}
 | |
| 	if in.Type != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"type\":")
 | |
| 		(in.Type).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	if in.MimeType != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"mimeType\":")
 | |
| 		out.String(string(in.MimeType))
 | |
| 	}
 | |
| 	if true {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"lastModified\":")
 | |
| 		(in.LastModified).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	if in.ContentSize != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"contentSize\":")
 | |
| 		out.Float64(float64(in.ContentSize))
 | |
| 	}
 | |
| 	if in.Failed {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"failed\":")
 | |
| 		out.Bool(bool(in.Failed))
 | |
| 	}
 | |
| 	if in.Canceled {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"canceled\":")
 | |
| 		out.Bool(bool(in.Canceled))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v FrameResource) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage33(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v FrameResource) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage33(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *FrameResource) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage33(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *FrameResource) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage33(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage34(in *jlexer.Lexer, out *EventScreencastVisibilityChanged) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "visible":
 | |
| 			out.Visible = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage34(out *jwriter.Writer, in EventScreencastVisibilityChanged) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Visible {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"visible\":")
 | |
| 		out.Bool(bool(in.Visible))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventScreencastVisibilityChanged) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage34(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventScreencastVisibilityChanged) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage34(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventScreencastVisibilityChanged) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage34(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventScreencastVisibilityChanged) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage34(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage35(in *jlexer.Lexer, out *EventScreencastFrame) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "data":
 | |
| 			out.Data = string(in.String())
 | |
| 		case "metadata":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Metadata = nil
 | |
| 			} else {
 | |
| 				if out.Metadata == nil {
 | |
| 					out.Metadata = new(ScreencastFrameMetadata)
 | |
| 				}
 | |
| 				(*out.Metadata).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		case "sessionId":
 | |
| 			out.SessionID = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage35(out *jwriter.Writer, in EventScreencastFrame) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Data != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"data\":")
 | |
| 		out.String(string(in.Data))
 | |
| 	}
 | |
| 	if in.Metadata != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"metadata\":")
 | |
| 		if in.Metadata == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.Metadata).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	if in.SessionID != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"sessionId\":")
 | |
| 		out.Int64(int64(in.SessionID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventScreencastFrame) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage35(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventScreencastFrame) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage35(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventScreencastFrame) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage35(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventScreencastFrame) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage35(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage36(in *jlexer.Lexer, out *EventNavigationRequested) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "isInMainFrame":
 | |
| 			out.IsInMainFrame = bool(in.Bool())
 | |
| 		case "isRedirect":
 | |
| 			out.IsRedirect = bool(in.Bool())
 | |
| 		case "navigationId":
 | |
| 			out.NavigationID = int64(in.Int64())
 | |
| 		case "url":
 | |
| 			out.URL = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage36(out *jwriter.Writer, in EventNavigationRequested) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.IsInMainFrame {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"isInMainFrame\":")
 | |
| 		out.Bool(bool(in.IsInMainFrame))
 | |
| 	}
 | |
| 	if in.IsRedirect {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"isRedirect\":")
 | |
| 		out.Bool(bool(in.IsRedirect))
 | |
| 	}
 | |
| 	if in.NavigationID != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"navigationId\":")
 | |
| 		out.Int64(int64(in.NavigationID))
 | |
| 	}
 | |
| 	if in.URL != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"url\":")
 | |
| 		out.String(string(in.URL))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventNavigationRequested) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage36(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventNavigationRequested) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage36(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventNavigationRequested) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage36(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventNavigationRequested) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage36(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage37(in *jlexer.Lexer, out *EventLoadEventFired) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "timestamp":
 | |
| 			(out.Timestamp).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage37(out *jwriter.Writer, in EventLoadEventFired) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if true {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"timestamp\":")
 | |
| 		(in.Timestamp).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventLoadEventFired) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage37(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventLoadEventFired) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage37(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventLoadEventFired) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage37(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventLoadEventFired) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage37(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage38(in *jlexer.Lexer, out *EventJavascriptDialogOpening) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "message":
 | |
| 			out.Message = string(in.String())
 | |
| 		case "type":
 | |
| 			(out.Type).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage38(out *jwriter.Writer, in EventJavascriptDialogOpening) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Message != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"message\":")
 | |
| 		out.String(string(in.Message))
 | |
| 	}
 | |
| 	if in.Type != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"type\":")
 | |
| 		(in.Type).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventJavascriptDialogOpening) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage38(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventJavascriptDialogOpening) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage38(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventJavascriptDialogOpening) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage38(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventJavascriptDialogOpening) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage38(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage39(in *jlexer.Lexer, out *EventJavascriptDialogClosed) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "result":
 | |
| 			out.Result = bool(in.Bool())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage39(out *jwriter.Writer, in EventJavascriptDialogClosed) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Result {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"result\":")
 | |
| 		out.Bool(bool(in.Result))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventJavascriptDialogClosed) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage39(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventJavascriptDialogClosed) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage39(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventJavascriptDialogClosed) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage39(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventJavascriptDialogClosed) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage39(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage40(in *jlexer.Lexer, out *EventInterstitialShown) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage40(out *jwriter.Writer, in EventInterstitialShown) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventInterstitialShown) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage40(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventInterstitialShown) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage40(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventInterstitialShown) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage40(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventInterstitialShown) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage40(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage41(in *jlexer.Lexer, out *EventInterstitialHidden) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage41(out *jwriter.Writer, in EventInterstitialHidden) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventInterstitialHidden) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage41(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventInterstitialHidden) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage41(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventInterstitialHidden) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage41(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventInterstitialHidden) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage41(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage42(in *jlexer.Lexer, out *EventFrameStoppedLoading) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage42(out *jwriter.Writer, in EventFrameStoppedLoading) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameStoppedLoading) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage42(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameStoppedLoading) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage42(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameStoppedLoading) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage42(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameStoppedLoading) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage42(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage43(in *jlexer.Lexer, out *EventFrameStartedLoading) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage43(out *jwriter.Writer, in EventFrameStartedLoading) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameStartedLoading) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage43(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameStartedLoading) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage43(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameStartedLoading) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage43(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameStartedLoading) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage43(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage44(in *jlexer.Lexer, out *EventFrameScheduledNavigation) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		case "delay":
 | |
| 			out.Delay = float64(in.Float64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage44(out *jwriter.Writer, in EventFrameScheduledNavigation) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	if in.Delay != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"delay\":")
 | |
| 		out.Float64(float64(in.Delay))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameScheduledNavigation) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage44(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameScheduledNavigation) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage44(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameScheduledNavigation) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage44(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameScheduledNavigation) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage44(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage45(in *jlexer.Lexer, out *EventFrameResized) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage45(out *jwriter.Writer, in EventFrameResized) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameResized) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage45(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameResized) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage45(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameResized) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage45(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameResized) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage45(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage46(in *jlexer.Lexer, out *EventFrameNavigated) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frame":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Frame = nil
 | |
| 			} else {
 | |
| 				if out.Frame == nil {
 | |
| 					out.Frame = new(cdp.Frame)
 | |
| 				}
 | |
| 				(*out.Frame).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage46(out *jwriter.Writer, in EventFrameNavigated) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Frame != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frame\":")
 | |
| 		if in.Frame == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.Frame).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameNavigated) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage46(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameNavigated) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage46(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameNavigated) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage46(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameNavigated) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage46(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage47(in *jlexer.Lexer, out *EventFrameDetached) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage47(out *jwriter.Writer, in EventFrameDetached) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameDetached) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage47(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameDetached) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage47(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameDetached) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage47(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameDetached) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage47(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage48(in *jlexer.Lexer, out *EventFrameClearedScheduledNavigation) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage48(out *jwriter.Writer, in EventFrameClearedScheduledNavigation) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameClearedScheduledNavigation) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage48(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameClearedScheduledNavigation) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage48(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameClearedScheduledNavigation) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage48(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameClearedScheduledNavigation) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage48(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage49(in *jlexer.Lexer, out *EventFrameAttached) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "frameId":
 | |
| 			(out.FrameID).UnmarshalEasyJSON(in)
 | |
| 		case "parentFrameId":
 | |
| 			(out.ParentFrameID).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage49(out *jwriter.Writer, in EventFrameAttached) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.FrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"frameId\":")
 | |
| 		out.String(string(in.FrameID))
 | |
| 	}
 | |
| 	if in.ParentFrameID != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"parentFrameId\":")
 | |
| 		out.String(string(in.ParentFrameID))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventFrameAttached) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage49(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventFrameAttached) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage49(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventFrameAttached) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage49(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventFrameAttached) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage49(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage50(in *jlexer.Lexer, out *EventDomContentEventFired) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "timestamp":
 | |
| 			(out.Timestamp).UnmarshalEasyJSON(in)
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage50(out *jwriter.Writer, in EventDomContentEventFired) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if true {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"timestamp\":")
 | |
| 		(in.Timestamp).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventDomContentEventFired) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage50(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventDomContentEventFired) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage50(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventDomContentEventFired) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage50(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventDomContentEventFired) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage50(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage51(in *jlexer.Lexer, out *EventColorPicked) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "color":
 | |
| 			if in.IsNull() {
 | |
| 				in.Skip()
 | |
| 				out.Color = nil
 | |
| 			} else {
 | |
| 				if out.Color == nil {
 | |
| 					out.Color = new(cdp.RGBA)
 | |
| 				}
 | |
| 				(*out.Color).UnmarshalEasyJSON(in)
 | |
| 			}
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage51(out *jwriter.Writer, in EventColorPicked) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Color != nil {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"color\":")
 | |
| 		if in.Color == nil {
 | |
| 			out.RawString("null")
 | |
| 		} else {
 | |
| 			(*in.Color).MarshalEasyJSON(out)
 | |
| 		}
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EventColorPicked) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage51(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EventColorPicked) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage51(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EventColorPicked) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage51(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EventColorPicked) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage51(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage52(in *jlexer.Lexer, out *EnableParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage52(out *jwriter.Writer, in EnableParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v EnableParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage52(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage52(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *EnableParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage52(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage52(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage53(in *jlexer.Lexer, out *DisableParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage53(out *jwriter.Writer, in DisableParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v DisableParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage53(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage53(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *DisableParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage53(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage53(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage54(in *jlexer.Lexer, out *ConfigureOverlayParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "suspended":
 | |
| 			out.Suspended = bool(in.Bool())
 | |
| 		case "message":
 | |
| 			out.Message = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage54(out *jwriter.Writer, in ConfigureOverlayParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Suspended {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"suspended\":")
 | |
| 		out.Bool(bool(in.Suspended))
 | |
| 	}
 | |
| 	if in.Message != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"message\":")
 | |
| 		out.String(string(in.Message))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v ConfigureOverlayParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage54(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v ConfigureOverlayParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage54(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *ConfigureOverlayParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage54(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *ConfigureOverlayParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage54(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage55(in *jlexer.Lexer, out *CaptureScreenshotReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "data":
 | |
| 			out.Data = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage55(out *jwriter.Writer, in CaptureScreenshotReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Data != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"data\":")
 | |
| 		out.String(string(in.Data))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v CaptureScreenshotReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage55(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v CaptureScreenshotReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage55(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *CaptureScreenshotReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage55(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *CaptureScreenshotReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage55(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage56(in *jlexer.Lexer, out *CaptureScreenshotParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "format":
 | |
| 			(out.Format).UnmarshalEasyJSON(in)
 | |
| 		case "quality":
 | |
| 			out.Quality = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage56(out *jwriter.Writer, in CaptureScreenshotParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Format != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"format\":")
 | |
| 		(in.Format).MarshalEasyJSON(out)
 | |
| 	}
 | |
| 	if in.Quality != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"quality\":")
 | |
| 		out.Int64(int64(in.Quality))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v CaptureScreenshotParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage56(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v CaptureScreenshotParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage56(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *CaptureScreenshotParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage56(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *CaptureScreenshotParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage56(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage57(in *jlexer.Lexer, out *AppManifestError) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "message":
 | |
| 			out.Message = string(in.String())
 | |
| 		case "critical":
 | |
| 			out.Critical = int64(in.Int64())
 | |
| 		case "line":
 | |
| 			out.Line = int64(in.Int64())
 | |
| 		case "column":
 | |
| 			out.Column = int64(in.Int64())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage57(out *jwriter.Writer, in AppManifestError) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Message != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"message\":")
 | |
| 		out.String(string(in.Message))
 | |
| 	}
 | |
| 	if in.Critical != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"critical\":")
 | |
| 		out.Int64(int64(in.Critical))
 | |
| 	}
 | |
| 	if in.Line != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"line\":")
 | |
| 		out.Int64(int64(in.Line))
 | |
| 	}
 | |
| 	if in.Column != 0 {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"column\":")
 | |
| 		out.Int64(int64(in.Column))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v AppManifestError) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage57(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v AppManifestError) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage57(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *AppManifestError) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage57(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *AppManifestError) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage57(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage58(in *jlexer.Lexer, out *AddScriptToEvaluateOnLoadReturns) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "identifier":
 | |
| 			out.Identifier = ScriptIdentifier(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage58(out *jwriter.Writer, in AddScriptToEvaluateOnLoadReturns) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if in.Identifier != "" {
 | |
| 		if !first {
 | |
| 			out.RawByte(',')
 | |
| 		}
 | |
| 		first = false
 | |
| 		out.RawString("\"identifier\":")
 | |
| 		out.String(string(in.Identifier))
 | |
| 	}
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v AddScriptToEvaluateOnLoadReturns) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage58(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v AddScriptToEvaluateOnLoadReturns) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage58(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *AddScriptToEvaluateOnLoadReturns) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage58(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *AddScriptToEvaluateOnLoadReturns) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage58(l, v)
 | |
| }
 | |
| func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage59(in *jlexer.Lexer, out *AddScriptToEvaluateOnLoadParams) {
 | |
| 	isTopLevel := in.IsStart()
 | |
| 	if in.IsNull() {
 | |
| 		if isTopLevel {
 | |
| 			in.Consumed()
 | |
| 		}
 | |
| 		in.Skip()
 | |
| 		return
 | |
| 	}
 | |
| 	in.Delim('{')
 | |
| 	for !in.IsDelim('}') {
 | |
| 		key := in.UnsafeString()
 | |
| 		in.WantColon()
 | |
| 		if in.IsNull() {
 | |
| 			in.Skip()
 | |
| 			in.WantComma()
 | |
| 			continue
 | |
| 		}
 | |
| 		switch key {
 | |
| 		case "scriptSource":
 | |
| 			out.ScriptSource = string(in.String())
 | |
| 		default:
 | |
| 			in.SkipRecursive()
 | |
| 		}
 | |
| 		in.WantComma()
 | |
| 	}
 | |
| 	in.Delim('}')
 | |
| 	if isTopLevel {
 | |
| 		in.Consumed()
 | |
| 	}
 | |
| }
 | |
| func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage59(out *jwriter.Writer, in AddScriptToEvaluateOnLoadParams) {
 | |
| 	out.RawByte('{')
 | |
| 	first := true
 | |
| 	_ = first
 | |
| 	if !first {
 | |
| 		out.RawByte(',')
 | |
| 	}
 | |
| 	first = false
 | |
| 	out.RawString("\"scriptSource\":")
 | |
| 	out.String(string(in.ScriptSource))
 | |
| 	out.RawByte('}')
 | |
| }
 | |
| 
 | |
| // MarshalJSON supports json.Marshaler interface
 | |
| func (v AddScriptToEvaluateOnLoadParams) MarshalJSON() ([]byte, error) {
 | |
| 	w := jwriter.Writer{}
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage59(&w, v)
 | |
| 	return w.Buffer.BuildBytes(), w.Error
 | |
| }
 | |
| 
 | |
| // MarshalEasyJSON supports easyjson.Marshaler interface
 | |
| func (v AddScriptToEvaluateOnLoadParams) MarshalEasyJSON(w *jwriter.Writer) {
 | |
| 	easyjsonC5a4559bEncodeGithubComKnqChromedpCdpPage59(w, v)
 | |
| }
 | |
| 
 | |
| // UnmarshalJSON supports json.Unmarshaler interface
 | |
| func (v *AddScriptToEvaluateOnLoadParams) UnmarshalJSON(data []byte) error {
 | |
| 	r := jlexer.Lexer{Data: data}
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage59(&r, v)
 | |
| 	return r.Error()
 | |
| }
 | |
| 
 | |
| // UnmarshalEasyJSON supports easyjson.Unmarshaler interface
 | |
| func (v *AddScriptToEvaluateOnLoadParams) UnmarshalEasyJSON(l *jlexer.Lexer) {
 | |
| 	easyjsonC5a4559bDecodeGithubComKnqChromedpCdpPage59(l, v)
 | |
| }
 |