#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 {
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,
...) { … }
}