Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.cpp

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: comments (heh!) Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« no previous file with comments | « third_party/WebKit/Source/wtf/CryptographicallyRandomNumber.h ('k') | third_party/WebKit/Source/wtf/CurrentTime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698