Network Events are modified by webConsole
Categories
(DevTools :: Netmonitor, enhancement, P3)
Tracking
(Not tracked)
People
(Reporter: yulia, Assigned: yulia)
References
Details
(Whiteboard: dt-fission)
Attachments
(4 obsolete files)
The webconsole modifies the shape of the networkEvent form:
https://searchfox.org/mozilla-central/source/devtools/shared/webconsole/client.js#102-125
Most of this data is available but not sent in the form:
https://searchfox.org/mozilla-central/source/devtools/server/actors/network-event.js#56-71
It doesn't make much sense to be doing this kind of adjustment client side, and it makes it more difficult to manage the events once this becomes a protocol.js front. These should be reconciled
Updated•6 years ago
|
Assignee | ||
Comment 1•6 years ago
|
||
Updated•6 years ago
|
Assignee | ||
Comment 2•6 years ago
|
||
Updated•6 years ago
|
Assignee | ||
Comment 3•6 years ago
|
||
Assignee | ||
Comment 4•6 years ago
|
||
This patch aligns the data structure of the event emitted by the webclientConsole on networkEvent
to something that can be reconciled with the event emitted by the NetEvent Actor for the event of
the same name. It also brings it close to the shape of the networkUpdate event. The plan is to
modify the packet emitted by the NetEvent actor with a before
call, and just attach the
networkInfo object to it.
Updated•6 years ago
|
Updated•6 years ago
|
Assignee | ||
Comment 5•6 years ago
|
||
closing as no longer necessary for fission.
Description
•