summaryrefslogtreecommitdiff
path: root/chromium/components/exo/wayland/zxdg_shell.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-12 14:27:29 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:35:20 +0000
commitc30a6232df03e1efbd9f3b226777b07e087a1122 (patch)
treee992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/components/exo/wayland/zxdg_shell.cc
parent7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff)
downloadqtwebengine-chromium-85-based.tar.gz
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/components/exo/wayland/zxdg_shell.cc')
-rw-r--r--chromium/components/exo/wayland/zxdg_shell.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/chromium/components/exo/wayland/zxdg_shell.cc b/chromium/components/exo/wayland/zxdg_shell.cc
index fde5aec2fbc..a4284484676 100644
--- a/chromium/components/exo/wayland/zxdg_shell.cc
+++ b/chromium/components/exo/wayland/zxdg_shell.cc
@@ -632,14 +632,15 @@ void xdg_shell_v6_create_positioner(wl_client* client,
wl_resource_create(client, &zxdg_positioner_v6_interface, 1, id);
SetImplementation(positioner_resource, &xdg_positioner_v6_implementation,
- std::make_unique<WaylandPositioner>());
+ std::make_unique<WaylandPositioner>(
+ WaylandPositioner::Version::UNSTABLE));
}
void xdg_shell_v6_get_xdg_surface(wl_client* client,
wl_resource* resource,
uint32_t id,
wl_resource* surface) {
- auto* data = GetUserDataAs<WaylandXdgShell>(resource);
+ auto* data = GetUserDataAs<WaylandZxdgShell>(resource);
std::unique_ptr<XdgShellSurface> shell_surface =
data->display->CreateXdgShellSurface(GetUserDataAs<Surface>(surface));
if (!shell_surface) {
@@ -675,10 +676,10 @@ const struct zxdg_shell_v6_interface xdg_shell_v6_implementation = {
} // namespace
-void bind_xdg_shell_v6(wl_client* client,
- void* data,
- uint32_t version,
- uint32_t id) {
+void bind_zxdg_shell_v6(wl_client* client,
+ void* data,
+ uint32_t version,
+ uint32_t id) {
wl_resource* resource =
wl_resource_create(client, &zxdg_shell_v6_interface, 1, id);