aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_client.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-14 21:42:26 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-09-14 21:42:26 +0900
commitbb6647d071a188defa2a36b8aead23d48f7df85d (patch)
treeedaec5c91b69e0e2737f66e5859a97b0f20a469a /src/wm_client.hpp
parent419360d5e88e4036bc9f4fd6a5068052cf8b8703 (diff)
Remove unnecessary functions
Change-Id: Ia66c5358572a1a6ea03c6f1e713b187f60979e8c Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_client.hpp')
-rw-r--r--src/wm_client.hpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/wm_client.hpp b/src/wm_client.hpp
index 5342b76..40a0d1d 100644
--- a/src/wm_client.hpp
+++ b/src/wm_client.hpp
@@ -49,19 +49,15 @@ class WMClient
~WMClient() = default;
std::string appID() const;
- unsigned surfaceID(const std::string &role) const;
+ std::string role() const;
unsigned layerID() const;
unsigned surfaceID() const;
- std::vector<unsigned> renderOrder() const;
- std::string role(unsigned surface) const;
- std::string role() const;
- const std::vector<std::string> &roles() const;
- void setRole(const std::string& role);
- void appendRole(const std::string& role);
- //bool addSurface(const std::string& role, unsigned surface);
+ // void setRole(const std::string& role);
+ // void appendRole(const std::string& role);
WMError addSurface(unsigned surface);
bool removeSurfaceIfExist(unsigned surface);
- bool removeRole(const std::string& role);
+ // bool removeRole(const std::string& role);
+ std::vector<unsigned> renderOrder() const;
#if GTEST_ENABLED
bool subscribe(afb_req req, const std::string &event_name);
@@ -76,7 +72,7 @@ class WMClient
std::string main_role;
std::string area;
unsigned surface; // currently, main application has only one surface.
- std::vector<std::string> role_list;
+ //std::vector<std::string> role_list;
std::vector<unsigned> surface_render_order;
std::unordered_map<std::string, unsigned> service2surfaces;
std::unordered_map<std::string, unsigned> role2surface;