MCPcopy Create free account
hub / github.com/chrxh/alien / processBackground

Method processBackground

source/Gui/BrowserWindow.cpp:211–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

209}
210
211void 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
225void BrowserWindow::processToolbar()
226{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected