Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(478)

Side by Side Diff: chrome/browser/chromeos/net/client_cert_store_chromeos.h

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_
6 #define CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_ 6 #define CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_
7 7
8 #include <memory>
8 #include <string> 9 #include <string>
9 #include <vector> 10 #include <vector>
10 11
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "net/cert/x509_certificate.h" 14 #include "net/cert/x509_certificate.h"
15 #include "net/ssl/client_cert_store_nss.h" 15 #include "net/ssl/client_cert_store_nss.h"
16 16
17 namespace chromeos { 17 namespace chromeos {
18 18
19 class CertificateProvider; 19 class CertificateProvider;
20 20
21 class ClientCertStoreChromeOS : public net::ClientCertStore { 21 class ClientCertStoreChromeOS : public net::ClientCertStore {
22 public: 22 public:
23 using PasswordDelegateFactory = 23 using PasswordDelegateFactory =
(...skipping 13 matching lines...) Expand all
37 // (e.g. for a certain browser context or user). 37 // (e.g. for a certain browser context or user).
38 // This is only called once initialization is finished, see Init(). 38 // This is only called once initialization is finished, see Init().
39 virtual bool IsCertAllowed( 39 virtual bool IsCertAllowed(
40 const scoped_refptr<net::X509Certificate>& cert) const = 0; 40 const scoped_refptr<net::X509Certificate>& cert) const = 0;
41 }; 41 };
42 42
43 // This ClientCertStore will return client certs from NSS certificate 43 // This ClientCertStore will return client certs from NSS certificate
44 // databases that pass the filter |cert_filter| and additionally return 44 // databases that pass the filter |cert_filter| and additionally return
45 // certificates provided by |cert_provider|. 45 // certificates provided by |cert_provider|.
46 ClientCertStoreChromeOS( 46 ClientCertStoreChromeOS(
47 scoped_ptr<CertificateProvider> cert_provider, 47 std::unique_ptr<CertificateProvider> cert_provider,
48 scoped_ptr<CertFilter> cert_filter, 48 std::unique_ptr<CertFilter> cert_filter,
49 const PasswordDelegateFactory& password_delegate_factory); 49 const PasswordDelegateFactory& password_delegate_factory);
50 ~ClientCertStoreChromeOS() override; 50 ~ClientCertStoreChromeOS() override;
51 51
52 // net::ClientCertStore: 52 // net::ClientCertStore:
53 void GetClientCerts(const net::SSLCertRequestInfo& cert_request_info, 53 void GetClientCerts(const net::SSLCertRequestInfo& cert_request_info,
54 net::CertificateList* selected_certs, 54 net::CertificateList* selected_certs,
55 const base::Closure& callback) override; 55 const base::Closure& callback) override;
56 56
57 private: 57 private:
58 void GotAdditionalCerts(const net::SSLCertRequestInfo* request, 58 void GotAdditionalCerts(const net::SSLCertRequestInfo* request,
59 net::CertificateList* selected_certs, 59 net::CertificateList* selected_certs,
60 const base::Closure& callback, 60 const base::Closure& callback,
61 const net::CertificateList& additional_certs); 61 const net::CertificateList& additional_certs);
62 62
63 void GetAndFilterCertsOnWorkerThread( 63 void GetAndFilterCertsOnWorkerThread(
64 scoped_ptr<crypto::CryptoModuleBlockingPasswordDelegate> 64 std::unique_ptr<crypto::CryptoModuleBlockingPasswordDelegate>
65 password_delegate, 65 password_delegate,
66 const net::SSLCertRequestInfo* request, 66 const net::SSLCertRequestInfo* request,
67 const net::CertificateList& additional_certs, 67 const net::CertificateList& additional_certs,
68 net::CertificateList* selected_certs); 68 net::CertificateList* selected_certs);
69 69
70 scoped_ptr<CertificateProvider> cert_provider_; 70 std::unique_ptr<CertificateProvider> cert_provider_;
71 scoped_ptr<CertFilter> cert_filter_; 71 std::unique_ptr<CertFilter> cert_filter_;
72 72
73 // The factory for creating the delegate for requesting a password to a 73 // The factory for creating the delegate for requesting a password to a
74 // PKCS#11 token. May be null. 74 // PKCS#11 token. May be null.
75 PasswordDelegateFactory password_delegate_factory_; 75 PasswordDelegateFactory password_delegate_factory_;
76 76
77 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreChromeOS); 77 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreChromeOS);
78 }; 78 };
79 79
80 } // namespace chromeos 80 } // namespace chromeos
81 81
82 #endif // CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_ 82 #endif // CHROME_BROWSER_CHROMEOS_NET_CLIENT_CERT_STORE_CHROMEOS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/net/client_cert_filter_chromeos.h ('k') | chrome/browser/chromeos/net/client_cert_store_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698