summaryrefslogtreecommitdiff
path: root/chromium/net/ssl/client_cert_store_nss.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/ssl/client_cert_store_nss.h')
-rw-r--r--chromium/net/ssl/client_cert_store_nss.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/net/ssl/client_cert_store_nss.h b/chromium/net/ssl/client_cert_store_nss.h
index 5583661a917..60f6e214a4a 100644
--- a/chromium/net/ssl/client_cert_store_nss.h
+++ b/chromium/net/ssl/client_cert_store_nss.h
@@ -5,9 +5,10 @@
#ifndef NET_SSL_CLIENT_CERT_STORE_NSS_H_
#define NET_SSL_CLIENT_CERT_STORE_NSS_H_
+#include <memory>
+
#include "base/callback.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "net/base/net_export.h"
#include "net/ssl/client_cert_store.h"
@@ -48,13 +49,13 @@ class NET_EXPORT ClientCertStoreNSS : public ClientCertStore {
// |certs|. |password_delegate| is used to unlock slots if required.
// Must be called from a worker thread.
static void GetPlatformCertsOnWorkerThread(
- scoped_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
+ std::unique_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
password_delegate,
net::CertificateList* certs);
private:
void GetAndFilterCertsOnWorkerThread(
- scoped_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
+ std::unique_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
password_delegate,
const SSLCertRequestInfo* request,
CertificateList* selected_certs);