| Index: webrtc/base/timeutils.h
|
| diff --git a/webrtc/base/timeutils.h b/webrtc/base/timeutils.h
|
| index 222d5c26e4774efc568736bd2f9fcfa417978ed1..78ebacee38df5087737de039fa20a6e8c485c9f6 100644
|
| --- a/webrtc/base/timeutils.h
|
| +++ b/webrtc/base/timeutils.h
|
| @@ -31,6 +31,26 @@ static const int64_t kNumNanosecsPerMicrosec =
|
|
|
| // TODO(honghaiz): Define a type for the time value specifically.
|
|
|
| +class ClockInterface {
|
| + public:
|
| + virtual ~ClockInterface() {}
|
| + virtual uint64_t TimeNanos() const = 0;
|
| +};
|
| +
|
| +// Sets the global source of time. This is useful mainly for unit tests.
|
| +//
|
| +// Does not transfer ownership of the clock.
|
| +// SetClock(nullptr) should be called before the ClockInterface is deleted.
|
| +//
|
| +// This method is not thread-safe; it should only be used when no other thread
|
| +// is running (for example, at the start/end of a unit test, or start/end of
|
| +// main()).
|
| +//
|
| +// TODO(deadbeef): Instead of having functions that access this global
|
| +// ClockInterface, we may want to pass the ClockInterface into everything
|
| +// that uses it, eliminating the need for a global variable and this function.
|
| +void SetClock(ClockInterface* clock);
|
| +
|
| // Returns the current time in milliseconds in 32 bits.
|
| uint32_t Time32();
|
|
|
|
|