mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
LibWeb: Prefix AK::Duration with AK Namespace
This commit is contained in:
committed by
Sam Atkins
parent
2fa9ec20bd
commit
b20a1d0fcd
@@ -132,7 +132,7 @@ void HTMLVideoElement::on_paused()
|
||||
void HTMLVideoElement::on_seek(double position, MediaSeekMode seek_mode)
|
||||
{
|
||||
if (m_video_track)
|
||||
m_video_track->seek(Duration::from_milliseconds(position * 1000.0), seek_mode);
|
||||
m_video_track->seek(AK::Duration::from_milliseconds(position * 1000.0), seek_mode);
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/media.html#attr-video-poster
|
||||
|
||||
Reference in New Issue
Block a user