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

@ -82,7 +82,7 @@ private:
JS::GCPtr<Fetch::Infrastructure::Request> m_request;
// https://html.spec.whatwg.org/multipage/server-sent-events.html#concept-event-stream-reconnection-time
Duration m_reconnection_time { Duration::from_seconds(3) };
AK::Duration m_reconnection_time { AK::Duration::from_seconds(3) };
// https://html.spec.whatwg.org/multipage/server-sent-events.html#concept-event-stream-last-event-id
String m_last_event_id;