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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2009773007: Add AntiVirus information to the system profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review fixes part 2 Created 4 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index bd3a4d4e80d88edb9966d31df8938d62f3b49821..8a3e145576bc9d849f2e47566e4b484f55535420 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -63153,6 +63153,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Windows.AntiVirusMetricsProvider.Result"
+ enum="AntiVirusMetricsProviderResult">
+ <owner>wfh@chromium.org</owner>
+ <summary>
+ Records the result of the attempt to enumerate the installed AntiVirus on
+ the machine. This is recorded once during metrics initialization.
+ </summary>
+</histogram>
+
<histogram name="Windows.GetVersionExVersion" enum="WindowsVersion">
<owner>scottmg@chromium.org</owner>
<summary>
@@ -63631,6 +63640,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="4" label="Undos Dismissed (Action) (Deprecated)"/>
</enum>
+<enum name="AntiVirusMetricsProviderResult" type="int">
+ <int value="0" label="RESULT_SUCCESS"/>
+ <int value="1" label="RESULT_GENERIC_FAILURE"/>
+ <int value="2" label="RESULT_FAILED_TO_INITIALIZE_COM"/>
+ <int value="3" label="RESULT_FAILED_TO_CREATE_INSTANCE"/>
+ <int value="4" label="RESULT_FAILED_TO_INITIALIZE_PRODUCT_LIST"/>
+ <int value="5" label="RESULT_FAILED_TO_GET_PRODUCT_COUNT"/>
+ <int value="6" label="RESULT_FAILED_TO_GET_ITEM"/>
+ <int value="7" label="RESULT_FAILED_TO_GET_PRODUCT_STATE"/>
+ <int value="8" label="RESULT_PRODUCT_STATE_INVALID"/>
+ <int value="9" label="RESULT_FAILED_TO_GET_PRODUCT_NAME"/>
+ <int value="10" label="RESULT_FAILED_TO_GET_REMEDIATION_PATH"/>
+</enum>
+
<enum name="AppBannersDismissEvent" type="int">
<int value="41" label="Error/unknown reason for dismissal"/>
<int value="42" label="User opened the application after installing it"/>

Powered by Google App Engine
This is Rietveld 408576698