| 776 | } |
| 777 | |
| 778 | bool ControllerAgent::handle_input_text(const InputTextParam& param) |
| 779 | { |
| 780 | if (!control_unit_) { |
| 781 | LogError << "control_unit_ is nullptr"; |
| 782 | return false; |
| 783 | } |
| 784 | |
| 785 | bool ret = control_unit_->input_text(param.text); |
| 786 | |
| 787 | return ret; |
| 788 | } |
| 789 | |
| 790 | bool ControllerAgent::handle_screencap() |
| 791 | { |
nothing calls this directly
no test coverage detected