commit 52018874a1c34ae2f61606c6f94da907b9e973cd
parent a05a7c50a87838d3d9603511728396f6e900be2b
Author: Matthew Gaudet <mgaudet@mozilla.com>
Date: Wed, 22 Oct 2025 17:26:20 +0000
Bug 1995630 - Swap flow marker labels to correct them r=smaug
Differential Revision: https://phabricator.services.mozilla.com/D269486
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/xpcom/base/CycleCollectedJSContext.cpp b/xpcom/base/CycleCollectedJSContext.cpp
@@ -1277,8 +1277,8 @@ bool CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool aForce) {
}
didProcess = true;
AUTO_PROFILER_TERMINATING_FLOW_MARKER_FLOW_ONLY(
- "CycleCollectedJSContext::PerformDebuggerMicroTaskCheckpoint",
- OTHER, Flow::FromPointer(runnable.get()));
+ "CycleCollectedJSContext::PerformMicroTaskCheckpoint", OTHER,
+ Flow::FromPointer(runnable.get()));
LogMicroTaskRunnable::Run log(runnable.get());
runnable->Run(aso);
runnable = nullptr;
@@ -1340,7 +1340,7 @@ void CycleCollectedJSContext::PerformDebuggerMicroTaskCheckpoint() {
}
AUTO_PROFILER_TERMINATING_FLOW_MARKER_FLOW_ONLY(
- "CycleCollectedJSContext::PerformMicroTaskCheckPoint", OTHER,
+ "CycleCollectedJSContext::PerformDebuggerMicroTaskCheckPoint", OTHER,
Flow::FromPointer(runnable.get()));
runnable->Run(aso);