summaryrefslogtreecommitdiff
path: root/src/protocol
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-05-05 10:22:04 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-05-05 15:47:55 -0400
commitef1772b8cb992b115411f01e1915fca015eea158 (patch)
tree1d8163853448ed5de75e9745ea733bdaef31082d /src/protocol
parente0d1a572a10303a6313c5efa3915df7489706caa (diff)
downloadenlightenment-ef1772b8cb992b115411f01e1915fca015eea158.tar.gz
implement wl client session recovery
another small feature patch brought to you by insomnia #SamsungFeatures
Diffstat (limited to 'src/protocol')
-rw-r--r--src/protocol/session-recovery.xml13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/protocol/session-recovery.xml b/src/protocol/session-recovery.xml
index 469871e261..3109413bb2 100644
--- a/src/protocol/session-recovery.xml
+++ b/src/protocol/session-recovery.xml
@@ -1,10 +1,19 @@
<protocol name="e_session_recovery">
<interface name="zwp_e_session_recovery" version="1">
- <request name="provide_uuid">
+ <request name="get_uuid">
+ <arg name="surface" type="object" interface="wl_surface"/>
+ </request>
+ <request name="set_uuid">
+ <arg name="surface" type="object" interface="wl_surface"/>
+ <arg name="uuid" type="string"/>
+ </request>
+ <request name="destroy_uuid">
+ <arg name="surface" type="object" interface="wl_surface"/>
<arg name="uuid" type="string"/>
</request>
- <event name="uuid">
+ <event name="create_uuid">
+ <arg name="surface" type="object" interface="wl_surface"/>
<arg name="uuid" type="string"/>
</event>
</interface>