chromium/media/base/test_random.h

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_BASE_TEST_RANDOM_H_
#define MEDIA_BASE_TEST_RANDOM_H_

#include <stdint.h>

#include "base/check_op.h"

// Vastly simplified ACM random class meant to only be used for testing.
// This class is meant to generate predictable sequences of pseudorandom
// numbers, unlike the classes in base/rand_util.h which are meant to generate
// unpredictable sequences.
// See
// https://code.google.com/p/szl/source/browse/trunk/src/utilities/acmrandom.h
// for more information.

namespace media {

class TestRandom {};

}  // namespace media

#endif  // MEDIA_BASE_TEST_RANDOM_H_