Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / sandbox / win / src / sandbox_rand.h
blob7f482870f88cd0b8abbfb714a0632b45e4f618e8
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SANDBOX_SRC_SANDBOX_RAND_H_
6 #define SANDBOX_SRC_SANDBOX_RAND_H_
8 #include "base/basictypes.h"
10 namespace sandbox {
12 // Generate a random value in |random_value|. Returns true on success.
13 bool GetRandom(unsigned int* random_value);
15 } // namespace sandbox
17 #endif // SANDBOX_SRC_SANDBOX_RAND_H_