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

Unified Diff: third_party/wayland-protocols/protocol/remote-shell-protocol.c

Issue 2686533004: Use pixel coordinates for shadow underlay bounds (Closed)
Patch Set: remove unnecessary changes Created 3 years, 10 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/protocol/remote-shell-protocol.c
diff --git a/third_party/wayland-protocols/protocol/remote-shell-protocol.c b/third_party/wayland-protocols/protocol/remote-shell-protocol.c
index 27b9f06cfde784fd8c6fc6de4f49c298c8e13ee8..7bc56fca4a807f729c1985f126d4b00cd986e24f 100644
--- a/third_party/wayland-protocols/protocol/remote-shell-protocol.c
+++ b/third_party/wayland-protocols/protocol/remote-shell-protocol.c
@@ -63,7 +63,7 @@ static const struct wl_message zcr_remote_shell_v1_events[] = {
};
WL_EXPORT const struct wl_interface zcr_remote_shell_v1_interface = {
- "zcr_remote_shell_v1", 2,
+ "zcr_remote_shell_v1", 3,
3, zcr_remote_shell_v1_requests,
2, zcr_remote_shell_v1_events,
};
@@ -87,19 +87,22 @@ static const struct wl_message zcr_remote_surface_v1_requests[] = {
{ "unpin", "", types + 0 },
{ "set_system_modal", "", types + 0 },
{ "unset_system_modal", "", types + 0 },
- { "set_moving", "2", types + 0 },
- { "unset_moving", "2", types + 0 },
+ { "set_rectangular_surface_shadow", "2iiii", types + 0 },
+ { "ack_configure", "3u", types + 0 },
+ { "set_moving", "3", types + 0 },
+ { "unset_moving", "3", types + 0 },
};
static const struct wl_message zcr_remote_surface_v1_events[] = {
{ "close", "", types + 0 },
{ "state_type_changed", "u", types + 0 },
+ { "configure", "3iiu", types + 0 },
};
WL_EXPORT const struct wl_interface zcr_remote_surface_v1_interface = {
- "zcr_remote_surface_v1", 2,
- 20, zcr_remote_surface_v1_requests,
- 2, zcr_remote_surface_v1_events,
+ "zcr_remote_surface_v1", 3,
+ 22, zcr_remote_surface_v1_requests,
+ 3, zcr_remote_surface_v1_events,
};
static const struct wl_message zcr_notification_surface_v1_requests[] = {

Powered by Google App Engine
This is Rietveld 408576698