Index: tools/metrics/histograms/histograms.xml |
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
index 7b4d26dddfcbc1d89717a0e0a2d05291d52a6f73..ff4699b989f49614b4c457c6225935c4e8102258 100644 |
--- a/tools/metrics/histograms/histograms.xml |
+++ b/tools/metrics/histograms/histograms.xml |
@@ -2404,6 +2404,11 @@ other types of suffix sets. |
</summary> |
</histogram> |
+<histogram name="Enterprise.PolicyInvalidations" |
+ enum="EnterprisePolicyInvalidations"> |
+ <summary>Events for receiving different types of invalidations.</summary> |
+</histogram> |
+ |
<histogram name="Enterprise.PolicyLoadStatus" enum="EnterprisePolicyLoadStatus"> |
<summary> |
Load status from the policy loaders which pull policy settings from the |
@@ -2411,6 +2416,13 @@ other types of suffix sets. |
</summary> |
</histogram> |
+<histogram name="Enterprise.PolicyRefresh" enum="EnterprisePolicyRefresh"> |
+ <summary> |
+ Events measuring effectiveness of refreshing policy when invalidations are |
+ received from a service. |
+ </summary> |
+</histogram> |
+ |
<histogram name="Event.CoalescedCount.Mouse"> |
<summary>Number of Mouse events coalesced.</summary> |
</histogram> |
@@ -16140,6 +16152,14 @@ other types of suffix sets. |
<int value="198" label="Idle warning delay when running on battery power"/> |
</enum> |
+<enum name="EnterprisePolicyInvalidations" type="int"> |
+ <summary> |
+ Status codes representing types of policy invalidations received. |
+ </summary> |
+ <int value="0" label="PAYLOAD">The invalidation contains a payload.</int> |
+ <int value="1" label="NO_PAYLOAD">The invalidation contains no payload.</int> |
+</enum> |
+ |
<enum name="EnterprisePolicyLoadStatus" type="int"> |
<summary> |
Status codes produced by the policy loaders that pull policy settings from |
@@ -16171,6 +16191,28 @@ other types of suffix sets. |
<int value="8" label="PARSE_ERROR">Parse error.</int> |
</enum> |
+<enum name="EnterprisePolicyRefresh" type="int"> |
+ <summary> |
+ Status codes representing whether a policy was invalidated when it was |
+ refreshed and whether the refresh resulted in changed policy values. |
+ </summary> |
+ <int value="0" label="CHANGED"> |
+ Policy was not invalidated; policy was changed; invalidations were enabled. |
+ </int> |
+ <int value="1" label="CHANGED_NO_INVALIDATIONS"> |
+ Policy was not invalidated; policy was changed; invalidations were disabled. |
+ </int> |
+ <int value="2" label="UNCHANGED"> |
+ Policy was not invalidated; policy was unchanged. |
+ </int> |
+ <int value="3" label="INVALIDATED_CHANGED"> |
+ Policy was invalidated; policy was changed. |
+ </int> |
+ <int value="4" label="INVALIDATED_UNCHANGED"> |
+ Policy was invalidated; policy was unchanged. |
+ </int> |
+</enum> |
+ |
<enum name="EnterprisePolicyType" type="int"> |
<summary> |
Result of Policy operations as defined in |