/work/obj-fuzz/dist/include/mozilla/RelativeTimeline.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* This Source Code Form is subject to the terms of the Mozilla Public |
3 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | | |
6 | | #ifndef __RelativeTimeline_h__ |
7 | | #define __RelativeTimeline_h__ |
8 | | |
9 | | namespace mozilla { |
10 | | |
11 | | class RelativeTimeline |
12 | | { |
13 | | public: |
14 | | RelativeTimeline() |
15 | 0 | : mRandomTimelineSeed(0) { } |
16 | | |
17 | | int64_t GetRandomTimelineSeed(); |
18 | | private: |
19 | | uint64_t mRandomTimelineSeed; |
20 | | |
21 | | }; |
22 | | |
23 | | } // mozilla namespace |
24 | | |
25 | | #endif /* __RelativeTimeline_h__ */ |