Index: net/http/http_auth_preferences.h |
diff --git a/net/http/http_auth_preferences.h b/net/http/http_auth_preferences.h |
index eabd13833f48bd0ce45072c4eb50aff0a290edaa..4f3a68befb60e987ef613ac70e26617425b868ff 100644 |
--- a/net/http/http_auth_preferences.h |
+++ b/net/http/http_auth_preferences.h |
@@ -5,6 +5,7 @@ |
#ifndef NET_HTTP_HTTP_AUTH_PREFERENCES_H_ |
#define NET_HTTP_HTTP_AUTH_PREFERENCES_H_ |
+#include <memory> |
#include <set> |
#include <string> |
#include <vector> |
@@ -76,7 +77,7 @@ class NET_EXPORT HttpAuthPreferences { |
// sorts of problems for, for example, active Negotiate transactions. |
const std::string gssapi_library_name_; |
#endif |
- scoped_ptr<URLSecurityManager> security_manager_; |
+ std::unique_ptr<URLSecurityManager> security_manager_; |
DISALLOW_COPY_AND_ASSIGN(HttpAuthPreferences); |
}; |