| 819 | } |
| 820 | |
| 821 | bool ControllerAgent::handle_stop_app(const AppParam& param) |
| 822 | { |
| 823 | if (!control_unit_) { |
| 824 | LogError << "control_unit_ is nullptr"; |
| 825 | return false; |
| 826 | } |
| 827 | |
| 828 | bool ret = control_unit_->stop_app(param.package); |
| 829 | |
| 830 | return ret; |
| 831 | } |
| 832 | |
| 833 | bool ControllerAgent::handle_key_down(const ClickKeyParam& param) |
| 834 | { |