LibWeb: Prefix AK::Duration with AK Namespace

This commit is contained in:
Andrew Kaster 2024-07-16 23:45:44 -06:00 committed by Sam Atkins
commit b20a1d0fcd
Notes: sideshowbarker 2024-07-18 23:46:42 +09:00
16 changed files with 39 additions and 39 deletions

View file

@ -27,9 +27,9 @@ public:
void pause_video(Badge<HTMLVideoElement>);
void stop_video(Badge<HTMLVideoElement>);
Duration position() const;
Duration duration() const;
void seek(Duration, MediaSeekMode);
AK::Duration position() const;
AK::Duration duration() const;
void seek(AK::Duration, MediaSeekMode);
u64 pixel_width() const;
u64 pixel_height() const;