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

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

Issue 21121007: Add histograms for session startup enum and number of URLs to open. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mpearson comments Created 7 years, 4 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 12810 matching lines...) Expand 10 before | Expand all | Expand 10 after
12821 </summary> 12821 </summary>
12822 </histogram> 12822 </histogram>
12823 12823
12824 <histogram name="Settings.ShowHomeButton" enum="BooleanEnabled"> 12824 <histogram name="Settings.ShowHomeButton" enum="BooleanEnabled">
12825 <summary> 12825 <summary>
12826 Whether or not the Home button is enabled in user preferences when a profile 12826 Whether or not the Home button is enabled in user preferences when a profile
12827 is loaded. 12827 is loaded.
12828 </summary> 12828 </summary>
12829 </histogram> 12829 </histogram>
12830 12830
12831 <histogram name="Settings.StartupPageLoadSettings" enum="SessionStartupPref">
12832 <summary>Records startup page settings when a profile is loaded.</summary>
Mark P 2013/07/30 17:56:57 nit: Records -> The (most histogram summaries are
meacer 2013/07/30 18:41:50 Done.
12833 </histogram>
12834
12835 <histogram name="Settings.StartupPageLoadURLs">
12836 <summary>
12837 Records the number of URLs to be loaded on startup when a profile is loaded,
Mark P 2013/07/30 17:56:57 nit: Records the -> The
meacer 2013/07/30 18:41:50 Done.
12838 if the startup page setting is set to load URLs.
12839 </summary>
12840 </histogram>
12841
12831 <histogram name="SimpleCache.CheckCRCResult" enum="CheckCRCResult"> 12842 <histogram name="SimpleCache.CheckCRCResult" enum="CheckCRCResult">
12832 <summary> 12843 <summary>
12833 Whether or not the CRC was checked at the moment when the last reference to 12844 Whether or not the CRC was checked at the moment when the last reference to
12834 a read-only entry stream is closed. 12845 a read-only entry stream is closed.
12835 </summary> 12846 </summary>
12836 </histogram> 12847 </histogram>
12837 12848
12838 <histogram name="SimpleCache.CreationToIndex" units="milliseconds"> 12849 <histogram name="SimpleCache.CreationToIndex" units="milliseconds">
12839 <summary> 12850 <summary>
12840 The time from the creation of the simple cache backend until the index has 12851 The time from the creation of the simple cache backend until the index has
(...skipping 7659 matching lines...) Expand 10 before | Expand all | Expand 10 after
20500 <int value="5" label="UPLOAD_FILE_NET_ERROR"/> 20511 <int value="5" label="UPLOAD_FILE_NET_ERROR"/>
20501 <int value="6" label="UPLOAD_FILE_RESPONSE_ERROR"/> 20512 <int value="6" label="UPLOAD_FILE_RESPONSE_ERROR"/>
20502 <int value="7" label="UPLOAD_COMPLETE_RESPONSE_ERROR"/> 20513 <int value="7" label="UPLOAD_COMPLETE_RESPONSE_ERROR"/>
20503 </enum> 20514 </enum>
20504 20515
20505 <enum name="ScrollThread" type="int"> 20516 <enum name="ScrollThread" type="int">
20506 <int value="0" label="Scroll on impl-thread"/> 20517 <int value="0" label="Scroll on impl-thread"/>
20507 <int value="1" label="Scroll on main-thread"/> 20518 <int value="1" label="Scroll on main-thread"/>
20508 </enum> 20519 </enum>
20509 20520
20521 <enum name="SessionStartupPref" type="int">
20522 <int value="0" label="Open home page (unused)"/>
20523 <int value="1" label="Continue from last opened pages"/>
20524 <int value="4" label="Open URLs"/>
20525 <int value="5" label="Open New tab page"/>
Mark P 2013/07/30 17:56:57 nit: odd capitalization
20526 </enum>
20527
20510 <enum name="ShillTerminationActionResult" type="int"> 20528 <enum name="ShillTerminationActionResult" type="int">
20511 <summary> 20529 <summary>
20512 The termination action result types come from TerminationActionResult in 20530 The termination action result types come from TerminationActionResult in
20513 shill/metrics.h 20531 shill/metrics.h
20514 </summary> 20532 </summary>
20515 <int value="0" label="Success"/> 20533 <int value="0" label="Success"/>
20516 <int value="1" label="Failure"/> 20534 <int value="1" label="Failure"/>
20517 </enum> 20535 </enum>
20518 20536
20519 <enum name="SideloadUIEvents" type="int"> 20537 <enum name="SideloadUIEvents" type="int">
(...skipping 3218 matching lines...) Expand 10 before | Expand all | Expand 10 after
23738 <group name="Disabled" label="Neither extra webstore link is visible"/> 23756 <group name="Disabled" label="Neither extra webstore link is visible"/>
23739 <group name="FooterLink" label="Link in bottom right of footer"/> 23757 <group name="FooterLink" label="Link in bottom right of footer"/>
23740 <group name="PlusIcon" label="Plus icon in apps page"/> 23758 <group name="PlusIcon" label="Plus icon in apps page"/>
23741 <affected-histogram name="Extensions.AppLaunch"/> 23759 <affected-histogram name="Extensions.AppLaunch"/>
23742 <affected-histogram name="NewTabPage.DefaultPageType"/> 23760 <affected-histogram name="NewTabPage.DefaultPageType"/>
23743 </fieldtrial> 23761 </fieldtrial>
23744 23762
23745 </fieldtrials> 23763 </fieldtrials>
23746 23764
23747 </histogram-configuration> 23765 </histogram-configuration>
OLDNEW
« chrome/browser/prefs/session_startup_pref.h ('K') | « chrome/browser/prefs/session_startup_pref.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698