1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibWeb: Implement seeking for audio tracks

This commit is contained in:
Timothy Flynn 2023-06-14 10:12:46 -04:00 committed by Andreas Kling
parent 0c4b28faf3
commit ff1606ffaf
4 changed files with 20 additions and 0 deletions

View file

@ -26,6 +26,7 @@ public:
Duration position() const;
Duration duration() const;
void seek(double, MediaSeekMode);
String const& id() const { return m_id; }
String const& kind() const { return m_kind; }