Index: net/quic/test_tools/mock_random.cc |
diff --git a/net/quic/test_tools/mock_random.cc b/net/quic/test_tools/mock_random.cc |
deleted file mode 100644 |
index ab71d1634c83bcfb52aa915558649d512f24e52e..0000000000000000000000000000000000000000 |
--- a/net/quic/test_tools/mock_random.cc |
+++ /dev/null |
@@ -1,34 +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. |
- |
-#include "net/quic/test_tools/mock_random.h" |
- |
-namespace net { |
- |
-MockRandom::MockRandom() |
- : base_(0xDEADBEEF), |
- increment_(0) { |
-} |
- |
-MockRandom::MockRandom(uint32 base) |
- : base_(base), |
- increment_(0) { |
-} |
- |
-void MockRandom::RandBytes(void* data, size_t len) { |
- memset(data, 'r' + increment_, len); |
-} |
- |
-uint64 MockRandom::RandUint64() { |
- return base_ + increment_; |
-} |
- |
-void MockRandom::Reseed(const void* additional_entropy, size_t entropy_len) { |
-} |
- |
-void MockRandom::ChangeValue() { |
- increment_++; |
-} |
- |
-} // namespace net |