| Index: net/ssl/client_cert_store_chromeos.cc
|
| diff --git a/net/ssl/client_cert_store_chromeos.cc b/net/ssl/client_cert_store_chromeos.cc
|
| index f357797e34b5d18b87766d81eaf1a42452635950..128ad8e5ddb1ddddbe4863d8dc8eda9cf38ef0c0 100644
|
| --- a/net/ssl/client_cert_store_chromeos.cc
|
| +++ b/net/ssl/client_cert_store_chromeos.cc
|
| @@ -16,9 +16,11 @@ ClientCertStoreChromeOS::ClientCertStoreChromeOS(
|
| const std::string& username_hash,
|
| const PasswordDelegateFactory& password_delegate_factory)
|
| : ClientCertStoreNSS(password_delegate_factory),
|
| - username_hash_(username_hash) {}
|
| + username_hash_(username_hash) {
|
| +}
|
|
|
| -ClientCertStoreChromeOS::~ClientCertStoreChromeOS() {}
|
| +ClientCertStoreChromeOS::~ClientCertStoreChromeOS() {
|
| +}
|
|
|
| void ClientCertStoreChromeOS::GetClientCerts(
|
| const SSLCertRequestInfo& cert_request_info,
|
| @@ -38,10 +40,11 @@ void ClientCertStoreChromeOS::GetClientCerts(
|
| &cert_request_info, selected_certs, callback, private_slot.Pass());
|
| }
|
|
|
| -void ClientCertStoreChromeOS::GetClientCertsImpl(CERTCertList* cert_list,
|
| - const SSLCertRequestInfo& request,
|
| - bool query_nssdb,
|
| - CertificateList* selected_certs) {
|
| +void ClientCertStoreChromeOS::GetClientCertsImpl(
|
| + CERTCertList* cert_list,
|
| + const SSLCertRequestInfo& request,
|
| + bool query_nssdb,
|
| + CertificateList* selected_certs) {
|
| ClientCertStoreNSS::GetClientCertsImpl(
|
| cert_list, request, query_nssdb, selected_certs);
|
|
|
| @@ -90,5 +93,4 @@ bool ClientCertStoreChromeOS::SelectClientCertsForTesting(
|
| return true;
|
| }
|
|
|
| -
|
| } // namespace net
|
|
|