| 146 | } |
| 147 | |
| 148 | void UserMarkIdStorage::LoadLastTrackId() |
| 149 | { |
| 150 | uint64_t lastId; |
| 151 | std::string val; |
| 152 | if (GetPlatform().GetSecureStorage().Load(kLastTrackId, val) && strings::to_uint64(val, lastId)) |
| 153 | m_lastTrackId = lastId; |
| 154 | else |
| 155 | m_lastTrackId = 0; |
| 156 | } |
| 157 | |
| 158 | void UserMarkIdStorage::LoadLastCategoryId() |
| 159 | { |