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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2730853002: Add UMA logging to track bad MIME types passed to HTMLMediaElement (Closed)
Patch Set: rebase only Created 3 years, 8 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 | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('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 7ad3ec2d8707efc01176164d145c51dd701826ba..2e989a49525ab8dba357032634fa936367a38209 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -27171,6 +27171,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Media.MediaElement.ContentTypeParseable"
+ enum="ContentTypeParseableResult">
+ <owner>jrummell@chromium.org</owner>
+ <summary>
+ Whether the content type provided to HTMLMediaElement would parse with
+ ParsedContentType or not.
+ </summary>
+</histogram>
+
<histogram name="Media.MicrophoneMuted" enum="MicrophoneMuteResult">
<owner>henrika@chromium.org</owner>
<summary>
@@ -86595,6 +86604,19 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="26" label="Background sync setting"/>
</enum>
+<enum name="ContentTypeParseableResult" type="int">
+ <int value="0" label="IsSupported returned and MIME type parseable"/>
+ <int value="1" label="MayBeSupported returned and MIME type parseable"/>
+ <int value="2" label="IsNotSupported returned and MIME type parseable"/>
+ <int value="3"
+ label="IsSupported returned and MIME type not parseable (should fail)"/>
+ <int value="4"
+ label="MayBeSupported returned and MIME type not parseable (should
+ fail)"/>
+ <int value="5"
+ label="IsNotSupported returned and MIME type not parseable (acceptable)"/>
+</enum>
+
<enum name="ContextLostReason" type="int">
<summary>The reason for losing a GPU context.</summary>
<int value="0" label="CONTEXT_INIT_FAILED"/>
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698