// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_CERT_CLIENT_CERT_VERIFIER_H_ #define NET_CERT_CLIENT_CERT_VERIFIER_H_ #include <memory> #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" namespace net { class X509Certificate; // ClientCertVerifier represents a service for verifying certificates. class NET_EXPORT ClientCertVerifier { … }; } // namespace net #endif // NET_CERT_CLIENT_CERT_VERIFIER_H_