summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/testing/wtf/scoped_mock_clock.h
blob: 6e0580e113a1ce47597c8028aced6de8898fdfe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2017 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 THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_WTF_SCOPED_MOCK_CLOCK_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_WTF_SCOPED_MOCK_CLOCK_H_

#include "third_party/blink/renderer/platform/wtf/time.h"

namespace WTF {

// Scoped helper to override WTF time functions for testing. Creating one on the
// stack resets mock time to the zero point for WTF::Time and WTF::TimeTicks.
// Mock time may only flow forwards, not backwards.
class ScopedMockClock {
 public:
  ScopedMockClock();
  ~ScopedMockClock();

  static double Now();

  void Advance(TimeDelta);

 private:
  static ScopedMockClock* top_;
  ScopedMockClock* next_;
  TimeFunction next_time_function_;
  base::TimeTicks now_;
};

}  // namespace WTF

#endif