| Index: third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp b/third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp
|
| index 32a8f19d933a7da0707037882704d86d391dfb5a..06920e2b550fb24d3b0cc684a570d70a6fd4c2e9 100644
|
| --- a/third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp
|
| +++ b/third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp
|
| @@ -40,8 +40,9 @@ void cryptographicallyRandomValues(void* buffer, size_t length) {
|
| return;
|
| }
|
|
|
| - // This should really be crypto::RandBytes(), but WTF can't depend on crypto. The implementation of
|
| - // crypto::RandBytes() is just calling base::RandBytes(), so both are actually same.
|
| + // This should really be crypto::RandBytes(), but WTF can't depend on crypto.
|
| + // The implementation of crypto::RandBytes() is just calling
|
| + // base::RandBytes(), so both are actually same.
|
| base::RandBytes(buffer, length);
|
| }
|
|
|
|
|