Convert base::UInt64ToString to base::NumberToString

https://chromium-review.googlesource.com/813101
This commit is contained in:
deepak1556 2018-04-13 14:31:52 +05:30 committed by Samuel Attard
parent 39b30b76ea
commit 3f7bb61b7f

View file

@ -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) {