aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_client.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-25 12:19:14 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-25 12:19:14 +0900
commitd2c062959c55c61a4e350f6df480d46d2a8d769c (patch)
tree4b5c932b5d45ebf395b64a4bfccc67f5ce5bfc07 /src/wm_client.hpp
parent494d3a09bdbc74c9005db421122cc60acb733443 (diff)
Implement attachApp
Change-Id: I4082fd400fd2f82fcb6cbbcc66d584fb0a572827 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_client.hpp')
-rw-r--r--src/wm_client.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wm_client.hpp b/src/wm_client.hpp
index 65c68b9..fc171f4 100644
--- a/src/wm_client.hpp
+++ b/src/wm_client.hpp
@@ -59,6 +59,8 @@ class WMClient
// bool removeRole(const std::string& role);
std::vector<unsigned> renderOrder() const;
WMError setRenderOrder(const std::vector<std::string>& order);
+ std::string attachTmpServiceSurface(const std::string& from, const std::string& service_surface);
+ WMError attachServiceSurface(const std::string& service_surface, unsigned surface);
#if GTEST_ENABLED
bool subscribe(afb_req req, const std::string &event_name);
@@ -77,6 +79,7 @@ class WMClient
std::vector<unsigned> surface_render_order;
std::unordered_map<std::string, unsigned> service2surfaces;
std::unordered_map<std::string, unsigned> role2surface;
+ std::unordered_map<std::string, std::string> service2supplier;
#if GTEST_ENABLED
// This is for unit test. afb_make_event occurs sig11 if call not in afb-binding
std::unordered_map<std::string, std::string> evname2afb_event;