| 148 | } |
| 149 | |
| 150 | void ServiceMsgServer::ProcessStartRender(const std::string& work_dir, const std::string& app_path, const std::vector<std::string>& args) { |
| 151 | if (!render_manager_->StartDesktopRender(work_dir, app_path, args)) { |
| 152 | LOGE("Start server failed!"); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | void ServiceMsgServer::ProcessStopRender() { |
| 157 | render_manager_->StopDesktopRender(); |
nothing calls this directly
no test coverage detected