Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h

Issue 2751653009: exo: Clean up display configuration protocol (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h
diff --git a/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h b/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h
index 9d5e0224c07d0b5a8a5aa64029fc8b63e2b2381d..31579bcc3a2ea8f8b5496d6f2bad60a90c278688 100644
--- a/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h
+++ b/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-server-protocol.h
@@ -342,9 +342,9 @@ zcr_remote_shell_v1_send_configuration_changed(struct wl_resource *resource_, in
* @param resource_ The client's resource
*/
static inline void
-zcr_remote_shell_v1_send_workspace(struct wl_resource *resource_, uint32_t id_hi, uint32_t id_lo, int32_t x, int32_t y, int32_t width, int32_t height, int32_t inset_left, int32_t inset_top, int32_t inset_right, int32_t inset_bottom)
+zcr_remote_shell_v1_send_workspace(struct wl_resource *resource_, uint32_t id_hi, uint32_t id_lo, int32_t x, int32_t y, int32_t width, int32_t height, int32_t inset_left, int32_t inset_top, int32_t inset_right, int32_t inset_bottom, int32_t transform, wl_fixed_t scale_factor)
{
- wl_resource_post_event(resource_, ZCR_REMOTE_SHELL_V1_WORKSPACE, id_hi, id_lo, x, y, width, height, inset_left, inset_top, inset_right, inset_bottom);
+ wl_resource_post_event(resource_, ZCR_REMOTE_SHELL_V1_WORKSPACE, id_hi, id_lo, x, y, width, height, inset_left, inset_top, inset_right, inset_bottom, transform, scale_factor);
}
/**
@@ -353,9 +353,9 @@ zcr_remote_shell_v1_send_workspace(struct wl_resource *resource_, uint32_t id_hi
* @param resource_ The client's resource
*/
static inline void
-zcr_remote_shell_v1_send_configure(struct wl_resource *resource_, uint32_t primary_id_hi, uint32_t primary_id_lo, int32_t transform, wl_fixed_t scale_factor, uint32_t layout_mode)
+zcr_remote_shell_v1_send_configure(struct wl_resource *resource_, uint32_t layout_mode)
{
- wl_resource_post_event(resource_, ZCR_REMOTE_SHELL_V1_CONFIGURE, primary_id_hi, primary_id_lo, transform, scale_factor, layout_mode);
+ wl_resource_post_event(resource_, ZCR_REMOTE_SHELL_V1_CONFIGURE, layout_mode);
}
/**

Powered by Google App Engine
This is Rietveld 408576698