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

Unified Diff: ui/file_manager/video_player/js/cast/cast_video_element.js

Issue 760853003: Adds histograms for casting feature of Video Player (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify the description of the histogram Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/file_manager/video_player/js/cast/cast_video_element.js
diff --git a/ui/file_manager/video_player/js/cast/cast_video_element.js b/ui/file_manager/video_player/js/cast/cast_video_element.js
index a2ffb3904438a2246531ab8e510810771b2bd78a..c05bbfd31a12e0fee6e06aebbda3521ce0e7b5aa 100644
--- a/ui/file_manager/video_player/js/cast/cast_video_element.js
+++ b/ui/file_manager/video_player/js/cast/cast_video_element.js
@@ -486,6 +486,7 @@ CastVideoElement.prototype = {
}
if (this.currentMediaDuration_ !== media.media.duration) {
+ metrics.recordCastedVideoLength(media.media.duration);
this.currentMediaDuration_ = media.media.duration;
this.dispatchEvent(new Event('durationchange'));
}

Powered by Google App Engine
This is Rietveld 408576698