From 8fc0c422ec46acaeb44c53bae646b8c58955c367 Mon Sep 17 00:00:00 2001 From: Andrew Creskey Date: Tue, 23 Mar 2021 12:09:55 +0000 Subject: [PATCH] Bug 1698515 - Remove spaces from PerfStats metric names r=barret Removing spaces from PerfStat metric names because they break the perfherder/perftest tokenization. Differential Revision: https://phabricator.services.mozilla.com/D109364 --- tools/performance/PerfStats.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/performance/PerfStats.cpp b/tools/performance/PerfStats.cpp index ff95b9d5d7d1..7322fc3c6f93 100644 --- a/tools/performance/PerfStats.cpp +++ b/tools/performance/PerfStats.cpp @@ -20,10 +20,10 @@ using namespace mozilla::gfx; namespace mozilla { -static const char* const sMetricNames[] = {"DisplayList Building", +static const char* const sMetricNames[] = {"DisplayListBuilding", "Rasterizing", "LayerBuilding", - "Layer Transactions", + "LayerTransactions", "Compositing", "Reflowing", "Styling",