| 48 | namespace { |
| 49 | |
| 50 | void wakeEventLoopViaServices() { |
| 51 | if (auto* const window_manager = services().windowOrNull()) { |
| 52 | window_manager->wakeEventLoop(); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | constexpr double kResizeSettleMinWaitSeconds = 0.001; |
| 57 |
nothing calls this directly
no test coverage detected