|
@@ -14,6 +14,7 @@
|
|
#include <LibWeb/Cookie/ParsedCookie.h>
|
|
#include <LibWeb/Cookie/ParsedCookie.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Loader/FileRequest.h>
|
|
#include <LibWeb/Loader/FileRequest.h>
|
|
|
|
+#include <LibWeb/Platform/Timer.h>
|
|
#include <WebContent/Forward.h>
|
|
#include <WebContent/Forward.h>
|
|
#include <WebContent/WebContentClientEndpoint.h>
|
|
#include <WebContent/WebContentClientEndpoint.h>
|
|
#include <WebContent/WebContentConsoleClient.h>
|
|
#include <WebContent/WebContentConsoleClient.h>
|
|
@@ -91,7 +92,7 @@ private:
|
|
i32 bitmap_id { -1 };
|
|
i32 bitmap_id { -1 };
|
|
};
|
|
};
|
|
Vector<PaintRequest> m_pending_paint_requests;
|
|
Vector<PaintRequest> m_pending_paint_requests;
|
|
- RefPtr<Core::Timer> m_paint_flush_timer;
|
|
|
|
|
|
+ RefPtr<Web::Platform::Timer> m_paint_flush_timer;
|
|
|
|
|
|
HashMap<i32, NonnullRefPtr<Gfx::Bitmap>> m_backing_stores;
|
|
HashMap<i32, NonnullRefPtr<Gfx::Bitmap>> m_backing_stores;
|
|
|
|
|