| 233 | } |
| 234 | |
| 235 | bool AdbControlUnitMgr::input_text(const std::string& text) |
| 236 | { |
| 237 | if (!input_) { |
| 238 | LogError << "input_ is null"; |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | return input_->input_text(text); |
| 243 | } |
| 244 | |
| 245 | bool AdbControlUnitMgr::key_down(int key) |
| 246 | { |
nothing calls this directly
no test coverage detected