// 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 CONTENT_PUBLIC_BROWSER_CLIENT_CERTIFICATE_DELEGATE_H_ #define CONTENT_PUBLIC_BROWSER_CLIENT_CERTIFICATE_DELEGATE_H_ namespace net { class SSLPrivateKey; class X509Certificate; } namespace content { // A delegate interface for selecting a client certificate for use with a // network request. If the delegate is destroyed without calling // ContinueWithCertificate, the certificate request will be aborted. class ClientCertificateDelegate { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_CLIENT_CERTIFICATE_DELEGATE_H_