// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_OBSERVER_H_ #define CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_OBSERVER_H_ #include <memory> #include <set> #include "base/memory/raw_ptr.h" #include "base/memory/ref_counted.h" namespace net { class SSLCertRequestInfo; class SSLPrivateKey; class X509Certificate; } namespace content { class BrowserContext; class ClientCertificateDelegate; } // SSLClientAuthObserver is a base class that wraps a // ClientCertificateDelegate. It links client certificate selection dialogs // attached to the same BrowserContext. When CertificateSelected is called via // one of them, the rest simulate the same action. class SSLClientAuthObserver { … }; #endif // CHROME_BROWSER_SSL_SSL_CLIENT_AUTH_OBSERVER_H_