diff options
author | Andreas Kling <kling@serenityos.org> | 2023-04-24 18:02:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-25 14:48:40 +0200 |
commit | 1c6c3685c4c51000dd2397748db59177d2474688 (patch) | |
tree | aad4fa184ab0fb5d4acfae9fc0d2f3a26363ab0d /Ladybird/WebContentView.h | |
parent | 3494c2382d96e23c2791bf7e29bd90ef06de6fac (diff) | |
download | serenity-1c6c3685c4c51000dd2397748db59177d2474688.zip |
Ladybird: Remove Web::Platform plugins for Qt in favor of LibCore
Now that the Core::EventLoop is driven by a QEventLoop in Ladybird,
we don't need to patch LibWeb with Web::Platform plugins.
This patch removes EventLoopPluginQt and TimerQt.
Note that we can't just replace the Web::Platform abstractions with
LibCore stuff immediately, since the Web::Platform APIs use
JS::SafeFunction for callbacks.
Diffstat (limited to 'Ladybird/WebContentView.h')
-rw-r--r-- | Ladybird/WebContentView.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Ladybird/WebContentView.h b/Ladybird/WebContentView.h index 9b24cfe518..107db9195b 100644 --- a/Ladybird/WebContentView.h +++ b/Ladybird/WebContentView.h @@ -22,7 +22,6 @@ #include <LibWebView/ViewImplementation.h> #include <QAbstractScrollArea> #include <QPointer> -#include <QSocketNotifier> class QTextEdit; class QLineEdit; @@ -215,7 +214,6 @@ private: Gfx::IntRect m_viewport_rect; void handle_web_content_process_crash(); - QSocketNotifier m_web_content_notifier { QSocketNotifier::Type::Read }; RefPtr<Gfx::Bitmap> m_backup_bitmap; |