fix: remove use of deprecated API base::Hash() (#44076)

This commit is contained in:
Charles Kerr 2024-10-02 15:36:06 -05:00 коммит произвёл GitHub
Родитель 93dd9fc17b
Коммит 9df092e034
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -70,8 +70,8 @@ void DebugLog(std::string_view log_msg) {
LOG(INFO) << log_msg;
}
std::wstring GetTag(const std::string& notification_id) {
return base::NumberToWString(base::Hash(notification_id));
std::wstring GetTag(const std::string_view notification_id) {
return base::NumberToWString(base::FastHash(notification_id));
}
} // namespace