add new protocol for embedded compositor 53/51753/2
authorSangjin Lee <lsj119@samsung.com>
Fri, 13 Nov 2015 12:45:51 +0000 (21:45 +0900)
committerBoram Park <boram1288.park@samsung.com>
Tue, 24 Nov 2015 06:11:16 +0000 (22:11 -0800)
Change-Id: I3d58ce462c3b0e143b4aa6aaf4337d1fe2441e0f

protocol/tizen-extension.xml

index a8d4cc4..1e627aa 100644 (file)
 
   </interface>
 
+  <interface name="tizen_embedded_compositor" version="1">
+
+    <description summary="global embedded compositor object">
+      The global obejct. Wayland has 3 type of compositor, embedded compositor is one of them.
+      But tizen application is sendboxing by smack, then a application not allow commutication to other application by socket.
+      So system or session compositor create socket and send to embedded compostior.
+    </description>
+
+    <request name="get_socket">
+      <description summary="create new socket">
+        The get_socket request ask the server to create socket and emit socket event.
+      </description>
+    </request>
+
+    <event name="socket">
+      <description summary="socket fd">
+        Sent immediately after get_socket request
+      </description>
+      <arg name="sock_fd" type="fd"/>
+    </event>
+
+  </interface>
 </protocol>