Index: Source/core/html/MediaController.cpp |
diff --git a/Source/core/html/MediaController.cpp b/Source/core/html/MediaController.cpp |
index 38b7405050687f21a650e6a7bac9ca26797762ab..f86a22a81cd59863f3314c1aeb8b3cd4005845c5 100644 |
--- a/Source/core/html/MediaController.cpp |
+++ b/Source/core/html/MediaController.cpp |
@@ -157,7 +157,7 @@ double MediaController::currentTime() const |
return m_position; |
} |
-void MediaController::setCurrentTime(double time, ExceptionState& exceptionState) |
+void MediaController::setCurrentTime(double time) |
{ |
// When the user agent is to seek the media controller to a particular new playback position, |
// it must follow these steps: |
@@ -174,7 +174,7 @@ void MediaController::setCurrentTime(double time, ExceptionState& exceptionState |
// Seek each slaved media element to the new playback position relative to the media element timeline. |
for (MediaElementSequence::const_iterator it = m_mediaElements.begin(); it != m_mediaElements.end(); ++it) |
- (*it)->seek(time, exceptionState); |
+ (*it)->seek(time); |
scheduleTimeupdateEvent(); |
} |
@@ -483,7 +483,7 @@ void MediaController::bringElementUpToSpeed(HTMLMediaElement* element) |
// When the user agent is to bring a media element up to speed with its new media controller, |
// it must seek that media element to the MediaController's media controller position relative |
// to the media element's timeline. |
- element->seek(currentTime(), IGNORE_EXCEPTION); |
+ element->seek(currentTime()); |
// Update volume to take controller volume and mute into account. |
element->updateVolume(); |