| 117 | } |
| 118 | |
| 119 | bool RecordController::click(int x, int y) |
| 120 | { |
| 121 | return forward_and_record(RecordType::click, RecordClick { x, y }, [&]() { return inner_->click(x, y); }); |
| 122 | } |
| 123 | |
| 124 | bool RecordController::swipe(int x1, int y1, int x2, int y2, int duration) |
| 125 | { |