Index: webrtc/base/logsinks.h |
diff --git a/webrtc/base/logsinks.h b/webrtc/base/logsinks.h |
index eabf05639865cfa256059fe5303d1e0a63f65dcd..e75120e3f5461404f60f4e467ecb3b3988b22612 100644 |
--- a/webrtc/base/logsinks.h |
+++ b/webrtc/base/logsinks.h |
@@ -11,12 +11,12 @@ |
#ifndef WEBRTC_BASE_FILE_ROTATING_LOG_SINK_H_ |
#define WEBRTC_BASE_FILE_ROTATING_LOG_SINK_H_ |
+#include <memory> |
#include <string> |
#include "webrtc/base/constructormagic.h" |
#include "webrtc/base/filerotatingstream.h" |
#include "webrtc/base/logging.h" |
-#include "webrtc/base/scoped_ptr.h" |
namespace rtc { |
@@ -46,7 +46,7 @@ class FileRotatingLogSink : public LogSink { |
explicit FileRotatingLogSink(FileRotatingStream* stream); |
private: |
- scoped_ptr<FileRotatingStream> stream_; |
+ std::unique_ptr<FileRotatingStream> stream_; |
RTC_DISALLOW_COPY_AND_ASSIGN(FileRotatingLogSink); |
}; |