diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 23:28:29 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 23:28:29 +0000 |
commit | ba990126c119b5df777b9afcdc3d216cb9f21e5b (patch) | |
tree | 50025bd522a070efa235fff202040a95786323aa /base/rand_util.h | |
parent | c7166029d29e0f702a0ec4c3efc9aa4319de35cb (diff) | |
download | chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.zip chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.gz chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.bz2 |
RandUInt -> RandUint to match the style of other Uint functions.
Review URL: http://codereview.chromium.org/10767
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/rand_util.h')
-rw-r--r-- | base/rand_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/rand_util.h b/base/rand_util.h index cd687dd..18e7469 100644 --- a/base/rand_util.h +++ b/base/rand_util.h @@ -10,7 +10,7 @@ namespace base { // Returns a random number in range [0, kuint64max]. Thread-safe. -uint64 RandUInt64(); +uint64 RandUint64(); // Returns a random number between min and max (inclusive). Thread-safe. int RandInt(int min, int max); |