Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: tools/metrics/histograms/histograms.xml

Issue 17226003: Add metrics for interactions with the Apps Launcher promo dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 <histograms> 56 <histograms>
57 57
58 <histogram name="Apps.AppLaunch" enum="AppLaunch"> 58 <histogram name="Apps.AppLaunch" enum="AppLaunch">
59 <summary> 59 <summary>
60 The number of times v2 packaged apps are launched grouped by 60 The number of times v2 packaged apps are launched grouped by
61 extension_misc::AppLaunchBuckets. See also Extensions.AppLaunch. 61 extension_misc::AppLaunchBuckets. See also Extensions.AppLaunch.
62 </summary> 62 </summary>
63 </histogram> 63 </histogram>
64 64
65 <histogram name="Apps.AppLauncherPromo" enum="AppLauncherPromo">
66 <summary>Interactions with the App Launcher promo dialog.</summary>
67 </histogram>
68
65 <histogram name="AsyncDNS.ConfigChange" enum="BooleanSuccess"> 69 <histogram name="AsyncDNS.ConfigChange" enum="BooleanSuccess">
66 <summary> 70 <summary>
67 Whether DnsConfigService::OnConfigChange actually corresponded to a change 71 Whether DnsConfigService::OnConfigChange actually corresponded to a change
68 in DnsConfig. 72 in DnsConfig.
69 </summary> 73 </summary>
70 </histogram> 74 </histogram>
71 75
72 <histogram name="AsyncDNS.ConfigNotifyInterval" units="milliseconds"> 76 <histogram name="AsyncDNS.ConfigNotifyInterval" units="milliseconds">
73 <summary> 77 <summary>
74 Duration of time between calls to DnsConfigService::InvalidateConfig. 78 Duration of time between calls to DnsConfigService::InvalidateConfig.
(...skipping 12073 matching lines...) Expand 10 before | Expand all | Expand 10 after
12148 <int value="21" label="APP_LIST_SEARCH"/> 12152 <int value="21" label="APP_LIST_SEARCH"/>
12149 </enum> 12153 </enum>
12150 12154
12151 <enum name="AppLaunchContainer" type="int"> 12155 <enum name="AppLaunchContainer" type="int">
12152 <int value="0" label="LAUNCH_WINDOW"/> 12156 <int value="0" label="LAUNCH_WINDOW"/>
12153 <int value="1" label="LAUNCH_PANEL"/> 12157 <int value="1" label="LAUNCH_PANEL"/>
12154 <int value="2" label="LAUNCH_TAB"/> 12158 <int value="2" label="LAUNCH_TAB"/>
12155 <int value="3" label="LAUNCH_NONE (v2 packaged apps)"/> 12159 <int value="3" label="LAUNCH_NONE (v2 packaged apps)"/>
12156 </enum> 12160 </enum>
12157 12161
12162 <enum name="AppLauncherPromo" type="int">
12163 <int value="0" label="ALREADY_INSTALLED"/>
12164 <int value="1" label="SHOWN"/>
12165 <int value="2" label="DISMISSED"/>
12166 <int value="3" label="LEARN_MORE"/>
Ilya Sherman 2013/06/25 21:35:15 Optional nit: I'd recommend making these be more h
MAD 2013/06/26 03:33:40 Done. I was following the style of the others arou
12167 </enum>
12168
12158 <enum name="AppPromoAction" type="int"> 12169 <enum name="AppPromoAction" type="int">
12159 <int value="0" label="PROMO_LAUNCH_APP"/> 12170 <int value="0" label="PROMO_LAUNCH_APP"/>
12160 <int value="1" label="PROMO_LAUNCH_WEB_STORE"/> 12171 <int value="1" label="PROMO_LAUNCH_WEB_STORE"/>
12161 <int value="2" label="PROMO_CLOSE"/> 12172 <int value="2" label="PROMO_CLOSE"/>
12162 <int value="3" label="PROMO_EXPIRE"/> 12173 <int value="3" label="PROMO_EXPIRE"/>
12163 <int value="4" label="PROMO_SEEN"/> 12174 <int value="4" label="PROMO_SEEN"/>
12164 </enum> 12175 </enum>
12165 12176
12166 <enum name="AppsPageDragSource" type="int"> 12177 <enum name="AppsPageDragSource" type="int">
12167 <int value="0" label="Same apps pane"/> 12178 <int value="0" label="Same apps pane"/>
(...skipping 7648 matching lines...) Expand 10 before | Expand all | Expand 10 after
19816 <group name="Disabled" label="Neither extra webstore link is visible"/> 19827 <group name="Disabled" label="Neither extra webstore link is visible"/>
19817 <group name="FooterLink" label="Link in bottom right of footer"/> 19828 <group name="FooterLink" label="Link in bottom right of footer"/>
19818 <group name="PlusIcon" label="Plus icon in apps page"/> 19829 <group name="PlusIcon" label="Plus icon in apps page"/>
19819 <affected-histogram name="Extensions.AppLaunch"/> 19830 <affected-histogram name="Extensions.AppLaunch"/>
19820 <affected-histogram name="NewTabPage.DefaultPageType"/> 19831 <affected-histogram name="NewTabPage.DefaultPageType"/>
19821 </fieldtrial> 19832 </fieldtrial>
19822 19833
19823 </fieldtrials> 19834 </fieldtrials>
19824 19835
19825 </histogram-configuration> 19836 </histogram-configuration>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698