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