mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-19 08:37:54 +01:00

Bug: webrtc:42226242 Change-Id: I8802beb672e398c598728fc3bb5173bcdad16efc Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/354624 Auto-Submit: Björn Terelius <terelius@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42490}
26 lines
722 B
C++
26 lines
722 B
C++
/*
|
|
* Copyright (c) 2018 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.
|
|
*/
|
|
|
|
#include "api/rtc_event_log/rtc_event_log.h"
|
|
|
|
#include <cstdint>
|
|
#include <memory>
|
|
|
|
#include "api/rtc_event_log_output.h"
|
|
|
|
namespace webrtc {
|
|
|
|
bool RtcEventLogNull::StartLogging(
|
|
std::unique_ptr<RtcEventLogOutput> /*output*/,
|
|
int64_t /*output_period_ms*/) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace webrtc
|