mirror of
https://github.com/electron/electron.git
synced 2026-01-28 16:58:21 -05:00
Convert base::UInt64ToString to base::NumberToString
https://chromium-review.googlesource.com/813101
This commit is contained in:
committed by
Samuel Attard
parent
39b30b76ea
commit
3f7bb61b7f
@@ -351,7 +351,7 @@ class ScopedSocket {
|
||||
|
||||
// Returns a random string for uniquifying profile connections.
|
||||
std::string GenerateCookie() {
|
||||
return base::Uint64ToString(base::RandUint64());
|
||||
return base::NumberToString(base::RandUint64());
|
||||
}
|
||||
|
||||
bool CheckCookie(const base::FilePath& path, const base::FilePath& cookie) {
|
||||
|
||||
Reference in New Issue
Block a user