diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-02-09 14:06:49 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-03-01 12:38:14 +0200 |
commit | 359a0612e48d7d21d5247199ca57063bd5965f71 (patch) | |
tree | c90fc1f6ea15395d564cc12b6e68d0661a2c6a65 /grpc-proxy/grpc-async-cb.cpp | |
parent | 4af44df30c1784a69b96d310f152133a507bc2e1 (diff) |
protocol: Add set_app_normal request
This request allows transitioning back from other roles like
float/split/fullscreen to regular maximized, normal state.
Bug-AGL: SPEC-4673
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Id7f04ffee193677621bd32860998457498acc388
Diffstat (limited to 'grpc-proxy/grpc-async-cb.cpp')
-rw-r--r-- | grpc-proxy/grpc-async-cb.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/grpc-proxy/grpc-async-cb.cpp b/grpc-proxy/grpc-async-cb.cpp index 3754b3c..f7c114a 100644 --- a/grpc-proxy/grpc-async-cb.cpp +++ b/grpc-proxy/grpc-async-cb.cpp @@ -123,6 +123,18 @@ GrpcServiceImpl::SetAppFloat(grpc::CallbackServerContext *context, } grpc::ServerUnaryReactor * +GrpcServiceImpl::SetAppNormal(grpc::CallbackServerContext *context, + const ::agl_shell_ipc::NormalRequest* request, + ::agl_shell_ipc::NormalResponse* /* response */) +{ + m_aglShell->SetAppNormal(request->app_id()); + + grpc::ServerUnaryReactor* reactor = context->DefaultReactor(); + reactor->Finish(grpc::Status::OK); + return reactor; +} + +grpc::ServerUnaryReactor * GrpcServiceImpl::SetAppSplit(grpc::CallbackServerContext *context, const ::agl_shell_ipc::SplitRequest* request, ::agl_shell_ipc::SplitResponse* /*response*/) |