| Index: content/browser/ssl/ssl_client_auth_handler.h
|
| diff --git a/content/browser/ssl/ssl_client_auth_handler.h b/content/browser/ssl/ssl_client_auth_handler.h
|
| index 1deafbc8a1d4df095c7027131d2e092326af9b85..46782d734445ff64bea4278a846f067ab13b08de 100644
|
| --- a/content/browser/ssl/ssl_client_auth_handler.h
|
| +++ b/content/browser/ssl/ssl_client_auth_handler.h
|
| @@ -5,10 +5,11 @@
|
| #ifndef CONTENT_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|
| #define CONTENT_BROWSER_SSL_SSL_CLIENT_AUTH_HANDLER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -49,7 +50,7 @@ class SSLClientAuthHandler {
|
|
|
| // Creates a new SSLClientAuthHandler. The caller ensures that the handler
|
| // does not outlive |request| or |delegate|.
|
| - SSLClientAuthHandler(scoped_ptr<net::ClientCertStore> client_cert_store,
|
| + SSLClientAuthHandler(std::unique_ptr<net::ClientCertStore> client_cert_store,
|
| net::URLRequest* request,
|
| net::SSLCertRequestInfo* cert_request_info,
|
| Delegate* delegate);
|
|
|