summaryrefslogtreecommitdiff
path: root/chromium/third_party/webrtc/base/linux.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/base/linux.h')
-rw-r--r--chromium/third_party/webrtc/base/linux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/webrtc/base/linux.h b/chromium/third_party/webrtc/base/linux.h
index ba73b854ba8..b69de3b3701 100644
--- a/chromium/third_party/webrtc/base/linux.h
+++ b/chromium/third_party/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_;
};
//////////////////////////////////////////////////////////////////////////////