| 2299 | } |
| 2300 | |
| 2301 | void RenderingController::SendErrorResponse(httplib::Response& res, int status, const nlohmann::json& error) const |
| 2302 | { |
| 2303 | res.status = status; |
| 2304 | res.set_content(error.dump(), "application/json"); |
| 2305 | } |
| 2306 | |
| 2307 | bool RenderingController::IsValidStdMultiWindowId(const std::string& id) |
| 2308 | { |
no outgoing calls
no test coverage detected