| 209 | } |
| 210 | |
| 211 | void BrowserWindow::processBackground() |
| 212 | { |
| 213 | auto now = std::chrono::steady_clock::now(); |
| 214 | if (!_lastRefreshTime) { |
| 215 | _lastRefreshTime = now; |
| 216 | } |
| 217 | if (std::chrono::duration_cast<std::chrono::minutes>(now - *_lastRefreshTime).count() >= RefreshInterval) { |
| 218 | _lastRefreshTime = now; |
| 219 | refreshIntern(false); |
| 220 | } |
| 221 | |
| 222 | processPendingRequestIds(); |
| 223 | } |
| 224 | |
| 225 | void BrowserWindow::processToolbar() |
| 226 | { |
nothing calls this directly
no outgoing calls
no test coverage detected