| 1292 | } |
| 1293 | |
| 1294 | crl::time Application::lastNonIdleTime() const { |
| 1295 | return std::max( |
| 1296 | base::Platform::LastUserInputTime().value_or(0), |
| 1297 | _lastNonIdleTime); |
| 1298 | } |
| 1299 | |
| 1300 | rpl::producer<> Application::inAppKeyPressed() const { |
| 1301 | return _inAppKeyPressed.events(); |
no test coverage detected