| Index: tools/metrics/histograms/histograms.xml
|
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
|
| index d9238969ae37b2718dce3b9ce91ade340284d507..ef87da8d639fbb610a0aef40302a321f640f5f0d 100644
|
| --- a/tools/metrics/histograms/histograms.xml
|
| +++ b/tools/metrics/histograms/histograms.xml
|
| @@ -5663,6 +5663,39 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
|
| </summary>
|
| </histogram>
|
|
|
| +<histogram name="Chrome.ProcessSingleton.NotifyResult" enum="NotifyResult">
|
| + <owner>gab@chromium.org</owner>
|
| + <summary>
|
| + The result of every rendez-vous reported once per browser process launch.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="Chrome.ProcessSingleton.TimeToCreate" units="ms">
|
| + <owner>gab@chromium.org</owner>
|
| + <summary>
|
| + Time it takes to grab the process singleton. Reported once per successful
|
| + attempt at obtaining the singleton.
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="Chrome.ProcessSingleton.TimeToFailure" units="ms">
|
| + <owner>gab@chromium.org</owner>
|
| + <summary>
|
| + Time it takes to return an error from the process singleton algorithm (nor
|
| + succeeding in obtaining it, nor in generating a rendez-vous). This does not
|
| + include time spent in the fast notification path (chrome_exe_main_win.cc).
|
| + </summary>
|
| +</histogram>
|
| +
|
| +<histogram name="Chrome.ProcessSingleton.TimeToNotify" units="ms">
|
| + <owner>gab@chromium.org</owner>
|
| + <summary>
|
| + Time it takes to find the process singleton owner and notify it. Reported
|
| + once per successful rendez-vous. This does not include time spent in the
|
| + fast notification path (chrome_exe_main_win.cc).
|
| + </summary>
|
| +</histogram>
|
| +
|
| <histogram name="Chrome.SearchSelectExempt" enum="SearchEngine">
|
| <obsolete>
|
| Deprecated 8/2013. No longer tracked.
|
| @@ -91469,6 +91502,13 @@ value.
|
| <int value="6" label="Invalid Argument error"/>
|
| </enum>
|
|
|
| +<enum name="NotifyResult" type="int">
|
| + <int value="0" label="PROCESS_NONE"/>
|
| + <int value="1" label="PROCESS_NOTIFIED"/>
|
| + <int value="2" label="PROFILE_IN_USE"/>
|
| + <int value="3" label="LOCK_ERROR"/>
|
| +</enum>
|
| +
|
| <enum name="NotStreamingReason" type="int">
|
| <int value="0" label="Already loaded"/>
|
| <int value="1" label="Not HTTP"/>
|
|
|