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/Welcome/WelcomeWindow.gml | |
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/Welcome/WelcomeWindow.gml')
-rw-r--r-- | Userland/Applications/Welcome/WelcomeWindow.gml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Welcome/WelcomeWindow.gml b/Userland/Applications/Welcome/WelcomeWindow.gml index 0de47fe28b..6c7ebae2e3 100644 --- a/Userland/Applications/Welcome/WelcomeWindow.gml +++ b/Userland/Applications/Welcome/WelcomeWindow.gml @@ -53,7 +53,7 @@ } } - @Web::OutOfProcessWebView { + @WebView::OutOfProcessWebView { name: "web_view" min_width: 340 min_height: 160 |