Updating to latest chrome protocol.json
This commit is contained in:
parent
6c17327b42
commit
45ac05fa88
|
@ -482,9 +482,10 @@ func (t InitiatorType) String() string {
|
|||
|
||||
// InitiatorType values.
|
||||
const (
|
||||
InitiatorTypeParser InitiatorType = "parser"
|
||||
InitiatorTypeScript InitiatorType = "script"
|
||||
InitiatorTypeOther InitiatorType = "other"
|
||||
InitiatorTypeParser InitiatorType = "parser"
|
||||
InitiatorTypeScript InitiatorType = "script"
|
||||
InitiatorTypePreload InitiatorType = "preload"
|
||||
InitiatorTypeOther InitiatorType = "other"
|
||||
)
|
||||
|
||||
// MarshalEasyJSON satisfies easyjson.Marshaler.
|
||||
|
@ -504,6 +505,8 @@ func (t *InitiatorType) UnmarshalEasyJSON(in *jlexer.Lexer) {
|
|||
*t = InitiatorTypeParser
|
||||
case InitiatorTypeScript:
|
||||
*t = InitiatorTypeScript
|
||||
case InitiatorTypePreload:
|
||||
*t = InitiatorTypePreload
|
||||
case InitiatorTypeOther:
|
||||
*t = InitiatorTypeOther
|
||||
|
||||
|
|
|
@ -2405,6 +2405,7 @@
|
|||
"enum": [
|
||||
"parser",
|
||||
"script",
|
||||
"preload",
|
||||
"other"
|
||||
],
|
||||
"description": "Type of this initiator."
|
||||
|
|
Loading…
Reference in New Issue
Block a user