chromium/third_party/blink/renderer/platform/webrtc/webrtc_logging.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <inttypes.h>

#include "third_party/blink/public/platform/modules/webrtc/webrtc_logging.h"

#include "base/check.h"
#include "base/check_op.h"
#include "base/logging.h"
#include "base/numerics/clamped_math.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "third_party/webrtc_overrides/rtc_base/logging.h"

namespace blink {

// Shall only be set once and never go back to NULL.
WebRtcLogMessageDelegate* g_webrtc_logging_delegate =;

void InitWebRtcLoggingDelegate(WebRtcLogMessageDelegate* delegate) {}

void InitWebRtcLogging() {}

void WebRtcLogMessage(const std::string& message) {}

void WebRtcLog(const char* format, ...) {}

void WebRtcLog(void* thiz, const char* format, ...) {}

void BLINK_PLATFORM_EXPORT WebRtcLog(const char* prefix,
                                     void* thiz,
                                     const char* format,
                                     ...) {}

}  // namespace blink