diff options
author | DexesTTP <dexes.ttp@gmail.com> | 2022-04-30 10:46:33 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-15 12:17:36 +0200 |
commit | dcbbbf5b4a5dcb67184dc9f97c0f434aa301098c (patch) | |
tree | 3c4b47a4ea514104796f317f9bca349bab99b509 /Userland/Applications/TextEditor/MainWidget.h | |
parent | 31c00224295bfbe71e6533b447751d745c0f06cc (diff) | |
download | serenity-dcbbbf5b4a5dcb67184dc9f97c0f434aa301098c.zip |
LibWebView: Move OutOfProcessWebView to a new LibWebView library
Also moves WebContentClient and the references to the generated IPC
descriptions, since they are all components of OutOfProcessWebView.
This patch has no functional changes.
Diffstat (limited to 'Userland/Applications/TextEditor/MainWidget.h')
-rw-r--r-- | Userland/Applications/TextEditor/MainWidget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/TextEditor/MainWidget.h b/Userland/Applications/TextEditor/MainWidget.h index 8644975b6a..e094d0d1a6 100644 --- a/Userland/Applications/TextEditor/MainWidget.h +++ b/Userland/Applications/TextEditor/MainWidget.h @@ -16,7 +16,7 @@ #include <LibGUI/TextEditor.h> #include <LibGUI/Widget.h> #include <LibGUI/Window.h> -#include <LibWeb/Forward.h> +#include <LibWebView/Forward.h> namespace TextEditor { @@ -51,7 +51,7 @@ private: void update_markdown_preview(); void update_html_preview(); - Web::OutOfProcessWebView& ensure_web_view(); + WebView::OutOfProcessWebView& ensure_web_view(); void set_web_view_visible(bool); virtual void drop_event(GUI::DropEvent&) override; @@ -134,7 +134,7 @@ private: RefPtr<GUI::Action> m_shell_highlight; RefPtr<GUI::Action> m_sql_highlight; - RefPtr<Web::OutOfProcessWebView> m_page_view; + RefPtr<WebView::OutOfProcessWebView> m_page_view; bool m_auto_detect_preview_mode { false }; bool m_use_regex { false }; |