refactor: remove deprecated ToInternalValue() (#40980)

* refactor: do not use deprecated ToInternalValue() in ElectronExtensionLoader::FinishExtensionLoad()

* refactor: do not use deprecated ToInternalValue() in NotificationPresenterWin::SaveIconToFilesystem()

* chore: rename temp variable to now_usec for clarity
This commit is contained in:
Charles Kerr 2024-01-17 09:17:43 -06:00 committed by GitHub
parent 6803624576
commit 021592200e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 5 deletions

View file

@ -148,10 +148,11 @@ void ElectronExtensionLoader::FinishExtensionLoad(
ExtensionPrefs::ScopedDictionaryUpdate update(
extension_prefs, extension.get()->id(),
extensions::pref_names::kPrefPreferences);
auto preference = update.Create();
const base::Time install_time = base::Time::Now();
preference->SetString(
"install_time", base::NumberToString(install_time.ToInternalValue()));
const int64_t now_usec =
base::Time::Now().since_origin().InMicroseconds();
preference->SetString("install_time", base::NumberToString(now_usec));
}
}