You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a new conversation type for the new Performance agent, and a button
to access it in the Performance panel toolbar (behind an experiment).
This CL implements most of the planned "high-level" data as facts, and a
few of the planned agent functions. More to come.
The only impact on existing behavior should be no longer repeating the
context as a "context" ResponseType on every user message (which seemed
unintentional).
Bypass-Check-License: the presubmit check is wrong
Bug: 425270067
Change-Id: I4002688b5a202f674c05c4f30f6fc89b296e3aa8
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6819863
Reviewed-by: Jack Franklin <[email protected]>
Auto-Submit: Connor Clark <[email protected]>
Commit-Queue: Connor Clark <[email protected]>
* id: A unique numerical identifier for the call frame.
739
-
* name: A concise string describing the call frame (e.g., 'Evaluate Script', 'render', 'fetchData').
740
-
* duration: The total execution time of the call frame, including its children.
741
-
* selfTime: The time spent directly within the call frame, excluding its children's execution.
742
-
* urlIndex: Index referencing the "All URLs" list. Empty if no specific script URL is associated.
743
-
* childRange: Specifies the direct children of this node using their IDs. If empty ('' or 'S' at the end), the node has no children. If a single number (e.g., '4'), the node has one child with that ID. If in the format 'firstId-lastId' (e.g., '4-5'), it indicates a consecutive range of child IDs from 'firstId' to 'lastId', inclusive.
744
-
* S: **Optional marker.** The letter 'S' appears at the end of the line **only** for the single call frame selected by the user.`;
738
+
* id: A unique numerical identifier for the call frame.
739
+
* name: A concise string describing the call frame (e.g., 'Evaluate Script', 'render', 'fetchData').
740
+
* duration: The total execution time of the call frame, including its children.
741
+
* selfTime: The time spent directly within the call frame, excluding its children's execution.
742
+
* urlIndex: Index referencing the "All URLs" list. Empty if no specific script URL is associated.
743
+
* childRange: Specifies the direct children of this node using their IDs. If empty ('' or 'S' at the end), the node has no children. If a single number (e.g., '4'), the node has one child with that ID. If in the format 'firstId-lastId' (e.g., '4-5'), it indicates a consecutive range of child IDs from 'firstId' to 'lastId', inclusive.
744
+
* S: **Optional marker.** The letter 'S' appears at the end of the line **only** for the single call frame selected by the user.`;
0 commit comments