X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=grpc-proxy%2Fagl_shell.proto;h=f8a57d22efb470620693a5d46fbb9e018c17726a;hb=refs%2Fchanges%2F65%2F28465%2F3;hp=8e81750e224bae6052a60363b3068cb194c26e35;hpb=4af44df30c1784a69b96d310f152133a507bc2e1;p=src%2Fagl-compositor.git diff --git a/grpc-proxy/agl_shell.proto b/grpc-proxy/agl_shell.proto index 8e81750..f8a57d2 100644 --- a/grpc-proxy/agl_shell.proto +++ b/grpc-proxy/agl_shell.proto @@ -10,6 +10,7 @@ service AglShellManagerService { rpc SetAppFloat(FloatRequest) returns (FloatResponse) {} rpc AppStatusState(AppStateRequest) returns (stream AppStateResponse) {} rpc GetOutputs(OutputRequest) returns (ListOutputResponse) {} + rpc SetAppNormal(NormalRequest) returns (NormalResponse) {} } message ActivateRequest { @@ -62,3 +63,10 @@ message OutputResponse { message ListOutputResponse { repeated OutputResponse outputs = 1; }; + +message NormalRequest { + string app_id = 1; +}; + +message NormalResponse { +};