Home | History | Annotate | Download | only in base

Lines Matching refs:LogSink

355 class LogSink;  // defined below
362 // LogSink* sink;
367 static_cast<LogSink*>(sink), true).stream()
370 static_cast<LogSink*>(sink), false).stream()
918 LogMessage(const char* file, int line, LogSeverity severity, LogSink* sink,
1005 LogSink* sink_; // NULL or sink to send message to
1165 // Users should subclass LogSink and override send to do whatever they want.
1168 class LogSink {
1170 virtual ~LogSink();
1188 // E.g. if a LogSink has thread-specific actions, the send() method
1202 // Add or remove a LogSink as a consumer of logging data. Thread-safe.
1203 void AddLogSink(LogSink *destination);
1204 void RemoveLogSink(LogSink *destination);