summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h b/chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h
deleted file mode 100644
index 8dba8601f37..00000000000
--- a/chromium/net/third_party/quiche/src/quic/test_tools/mock_random.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef QUICHE_QUIC_TEST_TOOLS_MOCK_RANDOM_H_
-#define QUICHE_QUIC_TEST_TOOLS_MOCK_RANDOM_H_
-
-#include "quic/core/crypto/quic_random.h"
-
-namespace quic {
-namespace test {
-
-class MockRandom : public QuicRandom {
- public:
- // Initializes base_ to 0xDEADBEEF.
- MockRandom();
- explicit MockRandom(uint32_t base);
- MockRandom(const MockRandom&) = delete;
- MockRandom& operator=(const MockRandom&) = delete;
-
- // QuicRandom:
- // Fills the |data| buffer with a repeating byte, initially 'r'.
- void RandBytes(void* data, size_t len) override;
- // Returns base + the current increment.
- uint64_t RandUint64() override;
-
- // InsecureRandBytes behaves equivalently to RandBytes.
- void InsecureRandBytes(void* data, size_t len) override;
- // InsecureRandUint64 behaves equivalently to RandUint64.
- uint64_t InsecureRandUint64() override;
-
- // ChangeValue increments |increment_|. This causes the value returned by
- // |RandUint64| and the byte that |RandBytes| fills with, to change.
- void ChangeValue();
-
- // Sets the base to |base| and resets increment to zero.
- void ResetBase(uint32_t base);
-
- private:
- uint32_t base_;
- uint8_t increment_;
-};
-
-} // namespace test
-} // namespace quic
-
-#endif // QUICHE_QUIC_TEST_TOOLS_MOCK_RANDOM_H_