| 36 | } |
| 37 | |
| 38 | void HttpMapFilesDownloader::Download(QueuedCountry && queuedCountry) |
| 39 | { |
| 40 | CHECK_THREAD_CHECKER(m_checker, ()); |
| 41 | |
| 42 | m_queue.Append(std::move(queuedCountry)); |
| 43 | |
| 44 | if (m_queue.Count() == 1) |
| 45 | Download(); |
| 46 | } |
| 47 | |
| 48 | void HttpMapFilesDownloader::Download() |
| 49 | { |
nothing calls this directly
no test coverage detected