diff options
author | Christopher Michael <devilhorns@comcast.net> | 2021-03-01 10:29:50 -0500 |
---|---|---|
committer | Christopher Michael <devilhorns@comcast.net> | 2021-03-01 10:29:50 -0500 |
commit | fbfcb4b309d264f8d8ad7fd239792c55acae4230 (patch) | |
tree | 6ec45ca161f0317a85715182f8cc4be46e277638 /src | |
parent | 95a88f5a6c5c8bcc8bacb014742e37e3bfaf503d (diff) | |
download | efl-fbfcb4b309d264f8d8ad7fd239792c55acae4230.tar.gz |
wayland_protocol: Remove wayland wobbly windows junk
This protocol never fully worked properly, is unsupported & unused,
would never be accepted in upstream wayland, and is just generally
worthless so let's remove it. There are no plans to ever support it...
Diffstat (limited to 'src')
-rw-r--r-- | src/wayland_protocol/meson.build | 3 | ||||
-rw-r--r-- | src/wayland_protocol/www.xml | 28 |
2 files changed, 1 insertions, 30 deletions
diff --git a/src/wayland_protocol/meson.build b/src/wayland_protocol/meson.build index f08e84b31c..652dfd551d 100644 --- a/src/wayland_protocol/meson.build +++ b/src/wayland_protocol/meson.build @@ -8,8 +8,7 @@ wl_protocol_local = [ 'efl-aux-hints.xml', 'efl-hints.xml', 'session-recovery.xml', - 'teamwork.xml', - 'www.xml' + 'teamwork.xml' ] wl_unstable_protocol_sys = [ diff --git a/src/wayland_protocol/www.xml b/src/wayland_protocol/www.xml deleted file mode 100644 index 8d455178de..0000000000 --- a/src/wayland_protocol/www.xml +++ /dev/null @@ -1,28 +0,0 @@ -<protocol name="zwp_www"> - <interface name="www" version="1"> - <request name="create"> - <description summary="Create an object for WWW notifications"> - </description> - <arg name="id" type="new_id" interface="www_surface"/> - <arg name="surface" type="object" interface="wl_surface"/> - </request> - </interface> - <interface name="www_surface" version="1"> - <event name="status"> - <description summary="Status update on a www_surface"></description> - <arg name="x_rel" type="int"/> - <arg name="y_rel" type="int"/> - <arg name="timestamp" type="uint"/> - </event> - <event name="start_drag"> - <description summary="Drag has started"></description> - </event> - <event name="end_drag"> - <description summary="Drag has ended"></description> - </event> - <request name="destroy" type="destructor"> - <description summary="Destroy a www_surface"> - </description> - </request> - </interface> -</protocol> |