Skip to content

Commit

Permalink
Update loaderId description for requestWillBeSent and responseReceive…
Browse files Browse the repository at this point in the history
…d network events
  • Loading branch information
2tunnels committed Feb 1, 2025
1 parent e55a19d commit c5298b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -15460,7 +15460,7 @@
},
{
"name": "loaderId",
"description": "Loader identifier. Empty string if the request is fetched from worker.",
"description": "Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.",
"$ref": "LoaderId"
},
{
Expand Down Expand Up @@ -15570,7 +15570,7 @@
},
{
"name": "loaderId",
"description": "Loader identifier. Empty string if the request is fetched from worker.",
"description": "Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.",
"$ref": "LoaderId"
},
{
Expand Down
4 changes: 2 additions & 2 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -7114,7 +7114,7 @@ domain Network
parameters
# Request identifier.
RequestId requestId
# Loader identifier. Empty string if the request is fetched from worker.
# Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.
LoaderId loaderId
# URL of the document this request is loaded for.
string documentURL
Expand Down Expand Up @@ -7162,7 +7162,7 @@ domain Network
parameters
# Request identifier.
RequestId requestId
# Loader identifier. Empty string if the request is fetched from worker.
# Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.
LoaderId loaderId
# Timestamp.
MonotonicTime timestamp
Expand Down
4 changes: 2 additions & 2 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12267,7 +12267,7 @@ export namespace Protocol {
*/
requestId: RequestId;
/**
* Loader identifier. Empty string if the request is fetched from worker.
* Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.
*/
loaderId: LoaderId;
/**
Expand Down Expand Up @@ -12355,7 +12355,7 @@ export namespace Protocol {
*/
requestId: RequestId;
/**
* Loader identifier. Empty string if the request is fetched from worker.
* Loader identifier. Empty string for a preflight request or if the request is fetched from a worker.
*/
loaderId: LoaderId;
/**
Expand Down

0 comments on commit c5298b2

Please sign in to comment.