diff options
author | Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 2023-03-16 18:31:08 +0300 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-03-16 13:17:37 -0400 |
commit | 7c90c67a71f1171aba02e78586b939514ced1280 (patch) | |
tree | cb308205aa1bc1a287ae33820d2df85d139e0eb8 /Userland | |
parent | 6c052c45db9e88c15f9c352fd09c812fe8924df1 (diff) | |
download | serenity-7c90c67a71f1171aba02e78586b939514ced1280.zip |
LibWebView: Generate window handle during client creation
Generate handle UUID for top-level context that is going to
run in created WebContent process and sent it over IPC.
Co-authored-by: Timothy Flynn <trflynn89@pm.me>
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibWebView/OutOfProcessWebView.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp index 265a426f58..1c6070825f 100644 --- a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp +++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp @@ -19,6 +19,7 @@ #include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Palette.h> #include <LibGfx/SystemTheme.h> +#include <LibWeb/Crypto/Crypto.h> REGISTER_WIDGET(WebView, OutOfProcessWebView) @@ -69,6 +70,9 @@ void OutOfProcessWebView::create_client() }); }; + m_client_state.client_handle = Web::Crypto::generate_random_uuid().release_value_but_fixme_should_propagate_errors(); + client().async_set_window_handle(m_client_state.client_handle); + client().async_update_system_theme(Gfx::current_system_theme_buffer()); client().async_update_system_fonts(Gfx::FontDatabase::default_font_query(), Gfx::FontDatabase::fixed_width_font_query(), Gfx::FontDatabase::window_title_font_query()); client().async_update_screen_rects(GUI::Desktop::the().rects(), GUI::Desktop::the().main_screen_index()); |