Index: webrtc/base/httpclient.h |
diff --git a/webrtc/base/httpclient.h b/webrtc/base/httpclient.h |
index e7d2c5ce7d59f546fd6a955d82eae347560f9978..0c19d2efb4353dedea37a674c51fff0bcd6df24b 100644 |
--- a/webrtc/base/httpclient.h |
+++ b/webrtc/base/httpclient.h |
@@ -11,11 +11,12 @@ |
#ifndef WEBRTC_BASE_HTTPCLIENT_H__ |
#define WEBRTC_BASE_HTTPCLIENT_H__ |
+#include <memory> |
+ |
#include "webrtc/base/common.h" |
#include "webrtc/base/httpbase.h" |
#include "webrtc/base/nethelpers.h" |
#include "webrtc/base/proxyinfo.h" |
-#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/base/sigslot.h" |
#include "webrtc/base/socketaddress.h" |
#include "webrtc/base/socketpool.h" |
@@ -172,7 +173,7 @@ private: |
size_t retries_, attempt_, redirects_; |
RedirectAction redirect_action_; |
UriForm uri_form_; |
- scoped_ptr<HttpAuthContext> context_; |
+ std::unique_ptr<HttpAuthContext> context_; |
DiskCache* cache_; |
CacheState cache_state_; |
AsyncResolverInterface* resolver_; |