| 52 | } |
| 53 | |
| 54 | bool DiffsDataSource::SizeToDownloadFor(storage::CountryId const & countryId, uint64_t & size) const |
| 55 | { |
| 56 | CHECK_THREAD_CHECKER(m_threadChecker, ()); |
| 57 | |
| 58 | return WithNotAppliedDiff(countryId, [&size](DiffInfo const & info) { size = info.m_size; }); |
| 59 | } |
| 60 | |
| 61 | bool DiffsDataSource::VersionFor(storage::CountryId const & countryId, uint64_t & v) const |
| 62 | { |
no outgoing calls
no test coverage detected