| 339 | } |
| 340 | |
| 341 | void AdbControlUnitMgr::on_app_started(const std::string& intent) |
| 342 | { |
| 343 | LogFunc; |
| 344 | |
| 345 | dispatch([&](const std::shared_ptr<ControlUnitSink>& sink) { |
| 346 | if (!sink) { |
| 347 | return; |
| 348 | } |
| 349 | sink->on_app_started(intent); |
| 350 | }); |
| 351 | } |
| 352 | |
| 353 | void AdbControlUnitMgr::on_app_stopped(const std::string& intent) |
| 354 | { |
nothing calls this directly
no outgoing calls
no test coverage detected