diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 23:37:31 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 23:37:31 +0000 |
commit | d39dbf1383834246647703427bf2b56d7770c1ab (patch) | |
tree | b61a764bf7057ac8bbd3729a7d1b978a82548c29 /content/common | |
parent | 94bda20ef8a54236851e0240094da166afa47724 (diff) | |
download | chromium_src-d39dbf1383834246647703427bf2b56d7770c1ab.zip chromium_src-d39dbf1383834246647703427bf2b56d7770c1ab.tar.gz chromium_src-d39dbf1383834246647703427bf2b56d7770c1ab.tar.bz2 |
Notify all SSL client auth prompts when a cert is selected.
This only handles Linux. Win uses a modal dialog instead of a tab-constrained dialog, and will require a different approach. Mac has issues with programmatically closing its native sheet.
BUG=73223
TEST=see bug
Review URL: http://codereview.chromium.org/6812033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82030 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/notification_type.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/common/notification_type.h b/content/common/notification_type.h index 904925a..f0cf976 100644 --- a/content/common/notification_type.h +++ b/content/common/notification_type.h @@ -165,6 +165,13 @@ class NotificationType { // change. There are no details. SSL_INTERNAL_STATE_CHANGED, + // The user accepted or dismissed a SSL client authentication request. + // The source is a Source<SSLClientAuthHandler>. Details is a + // SSLClientAuthNotificationDetails which records specifies which + // SSLCertRequestInfo the request was for and which X509Certificate was + // selected (if any). + SSL_CLIENT_AUTH_CERT_SELECTED, + // Views ------------------------------------------------------------------- // Notification that a view was removed from a view hierarchy. The source |