| 65 | } |
| 66 | |
| 67 | uint64_t QueuedCountry::GetDownloadSize() const |
| 68 | { |
| 69 | uint64_t size; |
| 70 | if (m_fileType == MapFileType::Diff) |
| 71 | { |
| 72 | CHECK(m_diffsDataSource->SizeToDownloadFor(m_countryId, size), ()); |
| 73 | return size; |
| 74 | } |
| 75 | |
| 76 | return GetRemoteSize(*m_diffsDataSource, m_countryFile); |
| 77 | } |
| 78 | |
| 79 | void QueuedCountry::OnCountryInQueue() const |
| 80 | { |
no test coverage detected