| 44 | } |
| 45 | |
| 46 | bool MtouchHelper::input_text(const std::string& text) |
| 47 | { |
| 48 | if (!adb_shell_input_) { |
| 49 | LogError << "adb_shell_input_ is nullptr"; |
| 50 | return false; |
| 51 | } |
| 52 | return adb_shell_input_->input_text(text); |
| 53 | } |
| 54 | |
| 55 | bool MtouchHelper::key_down(int key) |
| 56 | { |
nothing calls this directly
no test coverage detected