ExtensionSyncService: listen for relevant changes instead of being explicitly called...
[chromium-blink-merge.git] / chrome / browser / ssl / ssl_client_certificate_selector.h
blob7c73479da78c35c1501498da251e3673cbba5a74
1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
6 #define CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
8 #include "base/callback_forward.h"
9 #include "base/memory/scoped_ptr.h"
11 namespace content {
12 class ClientCertificateDelegate;
13 class WebContents;
16 namespace net {
17 class SSLCertRequestInfo;
18 class X509Certificate;
21 namespace chrome {
23 // Opens a constrained SSL client certificate selection dialog under |parent|,
24 // offering certificates from |cert_request_info|. When the user has made a
25 // selection, the dialog will report back to |delegate|. If the dialog is
26 // closed with no selection, |delegate| will simply be destroyed.
27 void ShowSSLClientCertificateSelector(
28 content::WebContents* contents,
29 net::SSLCertRequestInfo* cert_request_info,
30 scoped_ptr<content::ClientCertificateDelegate> delegate);
32 } // namespace chrome
34 #endif // CHROME_BROWSER_SSL_SSL_CLIENT_CERTIFICATE_SELECTOR_H_