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

Unified Diff: Source/core/html/HTMLMediaElement.cpp

Issue 431903003: Always notify the MediaPlayer of any seek. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: nits Created 6 years, 5 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 | « LayoutTests/media/video-seek-to-current-position-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.cpp
diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
index 2e7f9801e54e65cc38afbcd0fde33499f681174c..ff115f08ead823d42b7aa90c2cdc0d2a530186d3 100644
--- a/Source/core/html/HTMLMediaElement.cpp
+++ b/Source/core/html/HTMLMediaElement.cpp
@@ -1913,7 +1913,6 @@ void HTMLMediaElement::seek(double time, ExceptionState& exceptionState)
// 3 - Set the seeking IDL attribute to true.
// The flag will be cleared when the engine tells us the time has actually changed.
- bool previousSeekStillPending = m_seeking;
m_seeking = true;
// 5 - If the new playback position is later than the end of the media resource, then let it be the end
@@ -1940,30 +1939,16 @@ void HTMLMediaElement::seek(double time, ExceptionState& exceptionState)
// attribute then set the seeking IDL attribute to false and abort these steps.
RefPtrWillBeRawPtr<TimeRanges> seekableRanges = seekable();
- // Short circuit seeking to the current time by just firing the events if no seek is required.
- // Don't skip calling the media engine if we are in poster mode because a seek should always
- // cancel poster display.
- bool noSeekRequired = !seekableRanges->length() || (time == now && displayMode() != Poster);
-
- if (noSeekRequired) {
- if (time == now) {
- scheduleEvent(EventTypeNames::seeking);
- if (previousSeekStillPending)
- return;
- // FIXME: There must be a stable state before timeupdate+seeked are dispatched and seeking
- // is reset to false. See http://crbug.com/266631
- scheduleTimeupdateEvent(false);
- scheduleEvent(EventTypeNames::seeked);
- }
+ if (!seekableRanges->length()) {
m_seeking = false;
return;
}
+
time = seekableRanges->nearest(time);
- if (m_playing) {
- if (m_lastSeekTime < now)
- addPlayedRange(m_lastSeekTime, now);
- }
+ if (m_playing && m_lastSeekTime < now)
+ addPlayedRange(m_lastSeekTime, now);
+
m_lastSeekTime = time;
m_sentEndEvent = false;
« no previous file with comments | « LayoutTests/media/video-seek-to-current-position-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698