diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-04 01:46:57 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-04 01:46:57 +0000 |
commit | b1f18494233f64c720729039222d9ad66c8ae95f (patch) | |
tree | 0f2848bdedba2a46c3d3b3fc8c7855d2786fd14d /chrome/common | |
parent | b1995975f4e6b17df513a6d0dae44b37c46c5e00 (diff) | |
download | chromium_src-b1f18494233f64c720729039222d9ad66c8ae95f.zip chromium_src-b1f18494233f64c720729039222d9ad66c8ae95f.tar.gz chromium_src-b1f18494233f64c720729039222d9ad66c8ae95f.tar.bz2 |
Linux: implement Client SSL Certificate selection UI
BUG=25241
TEST=Visit site for which you have a client certificate, verify that dialog comes up and you can select your cert (or cancel)
Review URL: http://codereview.chromium.org/661241
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 10 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 3b538b33..ac8ee7b 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -795,16 +795,6 @@ const char kChromeosFrame[] = "chromeos-frame"; const char kUseNSSForSSL[] = "use-nss-for-ssl"; #endif -#if defined(OS_LINUX) -// A temporary switch before we implement the client certificate selection UI. -// When an SSL server requests client authentication, select a client -// certificate automatically. -// WARNING: This switch has privacy issues because it reveals the user's -// identity to any server that requests a client certificate without the -// user's consent. -const char kAutoSSLClientAuth[] = "auto-ssl-client-auth"; -#endif - #if defined(OS_POSIX) // Bypass the error dialog when the profile lock couldn't be attained. // A flag, generated internally by Chrome for renderer and other helper process diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index c40675d..5ceb5fb 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -233,10 +233,6 @@ extern const char kChromeosFrame[]; extern const char kUseNSSForSSL[]; #endif -#if defined(OS_LINUX) -extern const char kAutoSSLClientAuth[]; -#endif - #if defined(OS_POSIX) extern const char kEnableCrashReporter[]; extern const char kNoProcessSingletonDialog[]; |