| Index: webrtc/base/linux.h
|
| diff --git a/webrtc/base/linux.h b/webrtc/base/linux.h
|
| index ba73b854ba8c05cfc80fb7c3d1435fa4ec6ebf5c..b69de3b370192088b3a8d7996c7741e8587d5173 100644
|
| --- a/webrtc/base/linux.h
|
| +++ b/webrtc/base/linux.h
|
| @@ -14,9 +14,9 @@
|
| #if defined(WEBRTC_LINUX)
|
| #include <string>
|
| #include <map>
|
| +#include <memory>
|
| #include <vector>
|
|
|
| -#include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/base/stream.h"
|
|
|
| namespace rtc {
|
| @@ -51,7 +51,7 @@ class ConfigParser {
|
| virtual bool ParseLine(std::string* key, std::string* value);
|
|
|
| private:
|
| - scoped_ptr<StreamInterface> instream_;
|
| + std::unique_ptr<StreamInterface> instream_;
|
| };
|
|
|
| //////////////////////////////////////////////////////////////////////////////
|
|
|