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

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

Issue 1784623003: Add histograms to compare GetVersionEx() with VerQueryValue() of kernel32 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 9 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/browser/metrics/chrome_browser_main_extra_parts_metrics.cc ('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 4540b3842452bb83908eb0bc17e1968bd9be9f3d..1cd4a80046fbefe499e33bc78d68ff64f4952831 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -58501,6 +58501,31 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Windows.GetVersionExVersion" enum="WindowsVersion">
+ <owner>scottmg@chromium.org</owner>
+ <summary>
+ The Windows version (base::win::Version) as reported by GetVersionEx(). This
+ is queried shortly after startup.
+ </summary>
+</histogram>
+
+<histogram name="Windows.InCompatibilityMode" enum="BooleanCompatibilityMode">
+ <owner>scottmg@chromium.org</owner>
+ <summary>
+ A boolean used to indicate when the Windows version reported by
+ GetVersionEx() and the Windows version reported by VerQueryValue() on
+ kernel32 do not match. This is queried shortly after startup.
+ </summary>
+</histogram>
+
+<histogram name="Windows.Kernel32Version" enum="WindowsVersion">
+ <owner>scottmg@chromium.org</owner>
+ <summary>
+ The Windows version (base::win::Version) as reported by VeryQueryValue() on
+ kernel32.dll. This is queried shortly after startup.
+ </summary>
+</histogram>
+
<histogram name="Windows.Tablet" enum="BooleanTablet">
<owner>zturner@chromium.org</owner>
<summary>Count of browser launches from a Windows tablet pc.</summary>
@@ -60190,6 +60215,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="Common Name used"/>
</enum>
+<enum name="BooleanCompatibilityMode" type="int">
+ <int value="0" label="Not in compatibility mode"/>
+ <int value="1" label="In compatibility mode"/>
+</enum>
+
<enum name="BooleanCompleted" type="int">
<int value="0" label="Not Completed"/>
<int value="1" label="Completed"/>
@@ -84218,6 +84248,9 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="3" label="Vista"/>
<int value="4" label="Windows 7"/>
<int value="5" label="Windows 8"/>
+ <int value="6" label="Windows 8.1"/>
+ <int value="7" label="Windows 10"/>
+ <int value="8" label="Windows 10 TH2"/>
</enum>
<enum name="WindowType" type="int">
« no previous file with comments | « chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698