* FullscreenVideoController.cpp:
(FullscreenVideoController::setCurrentTime):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@159367
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-11-15 Jer Noble <jer.noble@apple.com>
+
+ Unreviewed Win build fix; setCurrentTime() no longer takes an exception parameter.
+
+ * FullscreenVideoController.cpp:
+ (FullscreenVideoController::setCurrentTime):
+
2013-11-12 Alex Christensen <achristensen@webkit.org>
[WinCairo] Preparation for ENABLE(VIDEO).
void FullscreenVideoController::setCurrentTime(float value)
{
- if (m_mediaElement) {
- ExceptionCode ec;
- m_mediaElement->setCurrentTime(value, ec);
- }
+ if (m_mediaElement)
+ m_mediaElement->setCurrentTime(value);
}
float FullscreenVideoController::duration() const