From 86b893c8573f1755cba8380e567d73fd8a1bd213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Tue, 9 Jan 2018 11:26:54 +0100 Subject: [PATCH] Delete declaration of LogMultilineState and LogMultiline. Implementation was deleted in cl https://webrtc-review.googlesource.com/33240 Bug: webrtc:6424 Change-Id: I384e2b2933aa4127c8f68f2af1560da807568da8 Reviewed-on: https://webrtc-review.googlesource.com/38240 Reviewed-by: Henrik Grunell Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#21532} --- rtc_base/logging.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/rtc_base/logging.h b/rtc_base/logging.h index 99a71cae66..e3879fc05b 100644 --- a/rtc_base/logging.h +++ b/rtc_base/logging.h @@ -254,22 +254,6 @@ class LogMessage { // Logging Helpers ////////////////////////////////////////////////////////////////////// -// TODO(nisse): LogMultiline implementation is deleted, but keep declarations -// until the copy in chromium's webrtc_overrides is deleted too. -class LogMultilineState { - public: - size_t unprintable_count_[2]; - LogMultilineState() { - unprintable_count_[0] = unprintable_count_[1] = 0; - } -}; - -// When possible, pass optional state variable to track various data across -// multiple calls to LogMultiline. Otherwise, pass null. -void LogMultiline(LoggingSeverity level, const char* label, bool input, - const void* data, size_t len, bool hex_mode, - LogMultilineState* state); - // The following non-obvious technique for implementation of a // conditional log stream was stolen from google3/base/logging.h.