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 <henrikg@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21532}
This commit is contained in:
Niels Möller
2018-01-09 11:26:54 +01:00
committed by Commit Bot
parent 825249fd8c
commit 86b893c857

View File

@ -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.