| Index: webrtc/base/logsinks.h
|
| diff --git a/webrtc/base/logsinks.h b/webrtc/base/logsinks.h
|
| index f86bdd0a2de07bdb7674b2c26ef844d12fbe3f40..849e1dcf1636f7c42e7140adeaa9f9f40cbcd2c4 100644
|
| --- a/webrtc/base/logsinks.h
|
| +++ b/webrtc/base/logsinks.h
|
| @@ -39,6 +39,9 @@ class FileRotatingLogSink : public LogSink {
|
| // Deletes any existing files in the directory and creates a new log file.
|
| virtual bool Init();
|
|
|
| + // Disables buffering on the underlying stream.
|
| + bool DisableBuffering();
|
| +
|
| protected:
|
| explicit FileRotatingLogSink(FileRotatingStream* stream);
|
|
|
| @@ -57,8 +60,6 @@ class CallSessionFileRotatingLogSink : public FileRotatingLogSink {
|
| ~CallSessionFileRotatingLogSink() override;
|
|
|
| private:
|
| - scoped_ptr<CallSessionFileRotatingStream> stream_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(CallSessionFileRotatingLogSink);
|
| };
|
|
|
|
|