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

Unified Diff: base/rand_util.h

Issue 12545059: ifdef OS_NAME -> if defined(OS_NAME) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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: base/rand_util.h
diff --git a/base/rand_util.h b/base/rand_util.h
index 4f4765bcf8c902d1daa61de4368d01d7d4be60fe..bae8c311782bc7374796c53e35887c6c1cc47ccc 100644
--- a/base/rand_util.h
+++ b/base/rand_util.h
@@ -49,7 +49,7 @@ BASE_EXPORT void RandBytes(void* output, size_t output_length);
// See crypto/ for cryptographically secure random number generation APIs.
BASE_EXPORT std::string RandBytesAsString(size_t length);
-#ifdef OS_POSIX
+#if defined(OS_POSIX)
BASE_EXPORT int GetUrandomFD();
#endif

Powered by Google App Engine
This is Rietveld 408576698