blob: a212591723f77d8a5a680f4106de0aca3d968877 [file] [log] [blame]
/*
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_TICK_TIME_BASE_H_
#define WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_TICK_TIME_BASE_H_
#include "system_wrappers/interface/tick_util.h"
namespace webrtc {
// This class provides a mockable wrapper to TickTime.
class TickTimeBase {
public:
virtual ~TickTimeBase() {}
// "Now" in milliseconds.
virtual int64_t MillisecondTimestamp() const {
return TickTime::MillisecondTimestamp();
}
// "Now" in microseconds.
virtual int64_t MicrosecondTimestamp() const {
return TickTime::MicrosecondTimestamp();
}
};
} // namespace
#endif // WEBRTC_MODULES_VIDEO_CODING_MAIN_SOURCE_TICK_TIME_BASE_H_