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:
parent
6803624576
commit
021592200e
2 changed files with 7 additions and 5 deletions
|
@ -14,6 +14,7 @@
|
|||
#include "base/files/file_util.h"
|
||||
#include "base/hash/md5.h"
|
||||
#include "base/logging.h"
|
||||
#include "base/strings/string_number_conversions.h"
|
||||
#include "base/strings/utf_string_conversions.h"
|
||||
#include "base/time/time.h"
|
||||
#include "base/win/windows_version.h"
|
||||
|
@ -75,8 +76,8 @@ std::wstring NotificationPresenterWin::SaveIconToFilesystem(
|
|||
if (origin.is_valid()) {
|
||||
filename = base::MD5String(origin.spec()) + ".png";
|
||||
} else {
|
||||
base::TimeTicks now = base::TimeTicks::Now();
|
||||
filename = std::to_string(now.ToInternalValue()) + ".png";
|
||||
const int64_t now_usec = base::Time::Now().since_origin().InMicroseconds();
|
||||
filename = base::NumberToString(now_usec) + ".png";
|
||||
}
|
||||
|
||||
ScopedAllowBlockingForElectron allow_blocking;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue