2018-02-07 09:38:31 +01:00
|
|
|
/*
|
2019-05-22 13:39:25 +02:00
|
|
|
* Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
|
2018-02-07 09:38:31 +01:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-05-22 13:39:25 +02:00
|
|
|
#include "api/rtc_event_log/rtc_event.h"
|
2018-02-07 09:38:31 +01:00
|
|
|
|
2019-05-22 13:39:25 +02:00
|
|
|
#include "rtc_base/time_utils.h"
|
2018-10-18 14:20:44 +02:00
|
|
|
|
2018-02-07 09:38:31 +01:00
|
|
|
namespace webrtc {
|
|
|
|
|
|
2021-05-24 10:19:55 +02:00
|
|
|
RtcEvent::RtcEvent() : timestamp_us_(rtc::TimeMillis() * 1000) {}
|
2018-02-07 09:38:31 +01:00
|
|
|
|
|
|
|
|
} // namespace webrtc
|