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

Unified Diff: media/base/media_log.cc

Issue 2756283002: Restore logging of WMPI seek events in media log (Closed)
Patch Set: Created 3 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/media_log.h ('k') | media/blink/webmediaplayer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/media_log.cc
diff --git a/media/base/media_log.cc b/media/base/media_log.cc
index 8aa0db340779a6a12a8b14eddc24ad8afa6fb1d6..1f64a9ef1abcba605b35f9ba8749df8d11d08e1e 100644
--- a/media/base/media_log.cc
+++ b/media/base/media_log.cc
@@ -244,7 +244,7 @@ std::unique_ptr<MediaLogEvent> MediaLog::CreateLoadEvent(
return event;
}
-std::unique_ptr<MediaLogEvent> MediaLog::CreateSeekEvent(float seconds) {
+std::unique_ptr<MediaLogEvent> MediaLog::CreateSeekEvent(double seconds) {
std::unique_ptr<MediaLogEvent> event(CreateEvent(MediaLogEvent::SEEK));
event->params.SetDouble("seek_target", seconds);
return event;
« no previous file with comments | « media/base/media_log.h ('k') | media/blink/webmediaplayer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698