Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: chrome/browser/ssl_client_certificate_selector.h

Issue 2823038: Refactor SSLClientAuthHandler and certificate selection (Closed)
Patch Set: Rebase the patch Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 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.
4
5 #ifndef CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
6 #define CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
7
8 #include "gfx/native_widget_types.h"
9
10 class SSLClientAuthHandler;
11
12 namespace net {
13 class SSLCertRequestInfo;
14 }
15
16 namespace browser {
17
18 // Opens an SSL client certificate selection dialog under |parent|, offering
19 // certificates from |cert_request_info|. When the user has made a selection,
20 // the dialog will report back to |delegate|. |delegate| is notified when the
21 // dialog closes in call cases; if the user cancels the dialog, we call with a
22 // NULL certificate.
23 void ShowSSLClientCertificateSelector(
24 gfx::NativeWindow parent,
25 net::SSLCertRequestInfo* cert_request_info,
26 SSLClientAuthHandler* delegate);
27
28 } // namespace browser
29
30 #endif // CHROME_BROWSER_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_handler_mac.mm ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698