blob: 7f8e3748981ddff63f0261290f8c6bab4678c8d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
#define CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
#pragma once
class SSLClientAuthHandler;
class TabContentsWrapper;
namespace net {
class SSLCertRequestInfo;
}
namespace browser {
// Opens a constrained SSL client certificate selection dialog under |parent|,
// offering certificates from |cert_request_info|. When the user has made a
// selection, the dialog will report back to |delegate|. |delegate| is notified
// when the dialog closes in call cases; if the user cancels the dialog, we call
// with a NULL certificate.
void ShowSSLClientCertificateSelector(
TabContentsWrapper* wrapper,
net::SSLCertRequestInfo* cert_request_info,
SSLClientAuthHandler* delegate);
// Same as above, but doesn't check the UseMoreWebUI flag. It just calls the
// native implementation. This lets us have both the WebUI implementation and
// the native implementation linked in at the same time and switchable behind
// a run-time flag.
void ShowNativeSSLClientCertificateSelector(
TabContentsWrapper* wrapper,
net::SSLCertRequestInfo* cert_request_info,
SSLClientAuthHandler* delegate);
} // namespace browser
#endif // CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
|