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"
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_