Index: third_party/libjingle/overrides/talk/base/logging.h |
diff --git a/third_party/libjingle/overrides/talk/base/logging.h b/third_party/libjingle/overrides/talk/base/logging.h |
index 5203916023a0fcec24358e3cf95eacd0b130e918..137d7a4226f2beb2eb23ec02a31240664f198fda 100644 |
--- a/third_party/libjingle/overrides/talk/base/logging.h |
+++ b/third_party/libjingle/overrides/talk/base/logging.h |
@@ -31,8 +31,6 @@ |
namespace talk_base { |
-class LogMessageDelegate; |
- |
/////////////////////////////////////////////////////////////////////////////// |
// ConstantLabel can be used to easily generate string names from constant |
// values. This can be useful for logging descriptive names of error messages. |
@@ -165,9 +163,8 @@ void LogMultiline(LoggingSeverity level, const char* label, bool input, |
const void* data, size_t len, bool hex_mode, |
LogMultilineState* state); |
-// Registers a delegate to receive diagnostic logging messages. Not thread safe, |
-// must be called from the same thread. |
-void InitDiagnosticLoggingDelegate(LogMessageDelegate* delegate); |
+void InitDiagnosticLoggingDelegateFunction( |
+ void (*delegate)(const std::string&)); |
} // namespace talk_base |