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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1656673002: QUIC - Fix for crash in stable channel. Check for null |visitor_| before (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated comment to delete histogram Created 4 years, 10 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
« net/quic/quic_connection.cc ('K') | « net/quic/quic_connection.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 9f330134f0b052a4f6a8c6aa85e90c8230edaae6..99604914bd61ed948df8b48d1582c999c2d7ff62 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -25713,6 +25713,14 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.QuicCloseConnection.NullVisitor" enum="BooleanNullVisitor">
+ <owner>rtenneti@chromium.org</owner>
+ <summary>
+ The number of times Connection's visitor is a nullptr when CloseConnection
+ is called.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicCryptoClientConfig.PopulatedFromCanonicalConfig"
enum="BooleanPopulated">
<owner>rtenneti@chromium.org</owner>
@@ -58417,6 +58425,11 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="1" label="Missing data in disk cache"/>
</enum>
+<enum name="BooleanNullVisitor" type="int">
+ <int value="0" label="Connection's visitor is not a nullptr"/>
+ <int value="1" label="Connection's visitor is a nullptr"/>
+</enum>
+
<enum name="BooleanOrphan" type="int">
<int value="0" label="Non-orphan"/>
<int value="1" label="Orphan"/>
« net/quic/quic_connection.cc ('K') | « net/quic/quic_connection.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698