Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: net/quic/test_tools/mock_random.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_
6 #define NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_ 6 #define NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "net/quic/crypto/quic_random.h" 9 #include "net/quic/crypto/quic_random.h"
10 10
11 namespace net { 11 namespace net {
12 12
13 class MockRandom : public QuicRandom { 13 class MockRandom : public QuicRandom {
14 public: 14 public:
15 // Initializes base_ to 0xDEADBEEF. 15 // Initializes base_ to 0xDEADBEEF.
16 MockRandom(); 16 MockRandom();
17 explicit MockRandom(uint32 base); 17 explicit MockRandom(uint32 base);
18 18
19 // QuicRandom: 19 // QuicRandom:
20 // Fills the |data| buffer with a repeating byte, initially 'r'. 20 // Fills the |data| buffer with a repeating byte, initially 'r'.
21 virtual void RandBytes(void* data, size_t len) OVERRIDE; 21 virtual void RandBytes(void* data, size_t len) override;
22 // Returns base + the current increment. 22 // Returns base + the current increment.
23 virtual uint64 RandUint64() OVERRIDE; 23 virtual uint64 RandUint64() override;
24 // Does nothing. 24 // Does nothing.
25 virtual void Reseed(const void* additional_entropy, 25 virtual void Reseed(const void* additional_entropy,
26 size_t entropy_len) OVERRIDE; 26 size_t entropy_len) override;
27 27
28 // ChangeValue increments |increment_|. This causes the value returned by 28 // ChangeValue increments |increment_|. This causes the value returned by
29 // |RandUint64| and the byte that |RandBytes| fills with, to change. 29 // |RandUint64| and the byte that |RandBytes| fills with, to change.
30 void ChangeValue(); 30 void ChangeValue();
31 31
32 private: 32 private:
33 uint32 base_; 33 uint32 base_;
34 uint8 increment_; 34 uint8 increment_;
35 35
36 DISALLOW_COPY_AND_ASSIGN(MockRandom); 36 DISALLOW_COPY_AND_ASSIGN(MockRandom);
37 }; 37 };
38 38
39 } // namespace net 39 } // namespace net
40 40
41 #endif // NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_ 41 #endif // NET_QUIC_TEST_TOOLS_MOCK_RANDOM_H_
OLDNEW
« no previous file with comments | « net/quic/test_tools/mock_crypto_client_stream_factory.h ('k') | net/quic/test_tools/quic_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698