mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:28:11 +00:00
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.
This commit is contained in:
parent
31c0022429
commit
dcbbbf5b4a
41 changed files with 97 additions and 73 deletions
|
@ -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 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue