implement screenshot feature
[platform/core/uifw/aurum.git] / protocol / aurum.proto
index 60b5e61..2eed21d 100644 (file)
@@ -28,6 +28,7 @@ service Bootstrap {
    rpc getDeviceTime(ReqGetDeviceTime) returns (RspGetDeviceTime) {}
    rpc getLocation(ReqGetLocation) returns (RspGetLocation) {}
    rpc sendKey(ReqKey) returns (RspKey) {}
+   rpc takeScreenshot(ReqTakeScreenshot) returns (stream RspTakeScreenshot) {}
 }
 
 // ------------------------------------ //
@@ -357,6 +358,12 @@ message RspKey{
    RspStatus status = 1;
 }
 
+message ReqTakeScreenshot{
+}
+message RspTakeScreenshot{
+   bytes image = 1;
+}
+
 // ------------------------------------ //
 
 message ReqEmpty {