| 175 | } |
| 176 | |
| 177 | bool RenderManager::CheckPanelAlive(const std::vector<std::shared_ptr<ProcessInfo>>& processes) { |
| 178 | for (auto& p : processes) { |
| 179 | if (p->exe_full_path_.find(kGammaRayName) != std::string::npos) { |
| 180 | return true; |
| 181 | } |
| 182 | } |
| 183 | return false; |
| 184 | } |
| 185 | |
| 186 | bool RenderManager::StartDesktopRenderInternal(const std::string& _work_dir, const std::string& _app_path, const std::string& args) { |
| 187 | QString work_dir = QString::fromStdString(_work_dir); |
nothing calls this directly
no outgoing calls
no test coverage detected