| 986 | } |
| 987 | |
| 988 | void Storage::OnStartDownloading(QueuedCountry const & queuedCountry) |
| 989 | { |
| 990 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 991 | |
| 992 | if (m_startDownloadingCallback) |
| 993 | m_startDownloadingCallback(); |
| 994 | |
| 995 | m_downloadingCountries[queuedCountry.GetCountryId()] = Progress::Unknown(); |
| 996 | |
| 997 | NotifyStatusChangedForHierarchy(queuedCountry.GetCountryId()); |
| 998 | } |
| 999 | |
| 1000 | void Storage::OnDownloadProgress(QueuedCountry const & queuedCountry, Progress const & progress) |
| 1001 | { |
no test coverage detected