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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 2292293002: Add installer::SetupSingleton. (Closed)
Patch Set: CR grt #9 Created 4 years, 3 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:
Download patch
« no previous file with comments | « chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index ccb015218961048b5dfb1b1cfa73160813bd231d..30b8433b45afad66648042ac6e6006af855b2669 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -55092,6 +55092,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Setup.Install.SingletonAcquisitionResult"
+ enum="SetupSingletonAcquisitionResult">
+ <owner>fdoray@chromium.org</owner>
+ <summary>
+ The result of trying to acquire a setup singleton. On Windows, a setup.exe
+ process must hold the setup singleton of a Chrome installation when it makes
+ changes to it.
+ </summary>
+</histogram>
+
<histogram name="Setup.Install.StrandedChromeIsUsed" enum="BooleanUsage">
<owner>grt@chromium.org</owner>
<summary>
@@ -83758,6 +83768,7 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="57" label="UNPACKING_FAILED"/>
<int value="58" label="IN_USE_DOWNGRADE"/>
<int value="59" label="OLD_VERSION_DOWNGRADE"/>
+ <int value="60" label="SETUP_SINGLETON_ACQUISITION_FAILED"/>
</enum>
<enum name="InstantControllerEvent" type="int">
@@ -93888,6 +93899,12 @@ To add a new entry, add it with any value and run test to compute valid value.
label="Unpacking the (possibly patched) uncompressed archive failed."/>
</enum>
+<enum name="SetupSingletonAcquisitionResult" type="int">
+ <int value="0" label="The setup singleton was acquired successfully."/>
+ <int value="1" label="Acquisition of the exit event mutex timed out."/>
+ <int value="2" label="Acquisition of the setup mutex timed out."/>
+</enum>
+
<enum name="SHA1Status" type="int">
<summary>
Whether or not SHA-1 was present in a certificate chain and, if it was, when
« no previous file with comments | « chrome/installer/util/util_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698