summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLMediaElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLMediaElement.cpp')
-rw-r--r--WebCore/html/HTMLMediaElement.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/WebCore/html/HTMLMediaElement.cpp b/WebCore/html/HTMLMediaElement.cpp
index e90db4a..0136e08 100644
--- a/WebCore/html/HTMLMediaElement.cpp
+++ b/WebCore/html/HTMLMediaElement.cpp
@@ -1630,20 +1630,11 @@ void HTMLMediaElement::updatePlayState()
m_playbackProgressTimer.stop();
m_playing = false;
float time = currentTime();
-<<<<<<< HEAD:WebCore/html/HTMLMediaElement.cpp
- if (m_lastSeekTime < time)
- m_playedTimeRanges->add(m_lastSeekTime, time);
-=======
if (time > m_lastSeekTime)
addPlayedRange(m_lastSeekTime, time);
->>>>>>> webkit.org at 49305:WebCore/html/HTMLMediaElement.cpp
} else if (couldPlayIfEnoughData() && playerPaused)
m_player->prepareToPlay();
-<<<<<<< HEAD:WebCore/html/HTMLMediaElement.cpp
-
-=======
->>>>>>> webkit.org at 49305:WebCore/html/HTMLMediaElement.cpp
if (renderer())
renderer()->updateFromElement();
}