Support symlinks in tools/vim/chromium.ycm_extra_conf.py
[chromium-blink-merge.git] / net / ssl / client_cert_store_win_unittest.cc
blobeb8c0a66698b773c85fe7310c843929b06440ecd
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"
9 namespace net {
11 class ClientCertStoreWinTestDelegate {
12 public:
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);
20 private:
21 ClientCertStoreWin store_;
24 INSTANTIATE_TYPED_TEST_CASE_P(Win,
25 ClientCertStoreTest,
26 ClientCertStoreWinTestDelegate);
28 } // namespace net