| 153 | } |
| 154 | |
| 155 | bool RecordController::input_text(const std::string& text) |
| 156 | { |
| 157 | return forward_and_record(RecordType::input_text, RecordInputText { text }, [&]() { return inner_->input_text(text); }); |
| 158 | } |
| 159 | |
| 160 | bool RecordController::key_down(int key) |
| 161 | { |
nothing calls this directly
no test coverage detected