Commit 097be610 authored by Alex Newcomer's avatar Alex Newcomer Committed by Commit Bot

cros: Fix histogram suffix.

Incorrect histogram suffix was used in histograms.xml

In code we use "*.FromApp" || "*.NotFromApp"
In histograms.xml we had "*ForApp" || "*.NotForApp"

Bug: 805063
Change-Id: Icad5459e2aaf2b641e4a45e98163e658131c64ac
Reviewed-on: https://chromium-review.googlesource.com/882123Reviewed-by: default avatarMark Pearson <mpearson@chromium.org>
Commit-Queue: Alex Newcomer <newcomer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#531684}
parent 11e9b068
......@@ -2260,7 +2260,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram base="true" name="Apps.ContextMenuExecuteCommand"
enum="ChromeOSUICommands">
<!-- Name completed by histogram_suffixes
name="ContextMenuForApp" -->
name="ContextMenuFromApp" -->
<owner>=newcomer@chromium.org</owner>
<summary>
......@@ -102870,9 +102870,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<affected-histogram name="NewTabPage.ContentSuggestions.VisitDuration"/>
</histogram_suffixes>
<histogram_suffixes name="ContextMenuForApp" separator=".">
<suffix name="ForApp" label="The source of the context menu was an app."/>
<suffix name="NotForApp"
<histogram_suffixes name="ContextMenuFromApp" separator=".">
<suffix name="FromApp" label="The source of the context menu was an app."/>
<suffix name="NotFromApp"
label="The source of the context menu was shelf or wallpaper."/>
<affected-histogram name="Apps.ContextMenuExecuteCommand"/>
</histogram_suffixes>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment