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
3 // found in the LICENSE file.
5 #include "net/ssl/client_cert_store_win.h"
7 #include "net/ssl/client_cert_store_unittest-inl.h"
11 class ClientCertStoreWinTestDelegate
{
13 bool SelectClientCerts(const CertificateList
& input_certs
,
14 const SSLCertRequestInfo
& cert_request_info
,
15 CertificateList
* selected_certs
) {
16 return store_
.SelectClientCertsForTesting(
17 input_certs
, cert_request_info
, selected_certs
);
21 ClientCertStoreWin store_
;
24 INSTANTIATE_TYPED_TEST_CASE_P(Win
,
26 ClientCertStoreWinTestDelegate
);