diff options
| author | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 01:29:50 +0000 |
|---|---|---|
| committer | oshima@google.com <oshima@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 01:29:50 +0000 |
| commit | bb99a6e253ff9720a6eb3b620f7a034a44d0dd9c (patch) | |
| tree | c708c9cce3dd7d653e11ac45964e4557e1ff56e0 /chrome/browser/tab_contents/tab_contents_ssl_helper.cc | |
| parent | 98b4aca624603b64a6a4f7dd9c1922eacf2f7d6f (diff) | |
| download | chromium_src-bb99a6e253ff9720a6eb3b620f7a034a44d0dd9c.zip chromium_src-bb99a6e253ff9720a6eb3b620f7a034a44d0dd9c.tar.gz chromium_src-bb99a6e253ff9720a6eb3b620f7a034a44d0dd9c.tar.bz2 | |
Implement constrained window for TOUCH_UI.
Original CL: http://codereview.chromium.org/7631049
landing for rhashimoto@chromium.org who left google.
Sync'ed to TOT and fixed keyboard issue.
BUG=chromium-os:13900,97862
TEST=see original bug
Review URL: http://codereview.chromium.org/8055030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents_ssl_helper.cc')
| -rw-r--r-- | chrome/browser/tab_contents/tab_contents_ssl_helper.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_ssl_helper.cc b/chrome/browser/tab_contents/tab_contents_ssl_helper.cc index f96d1e4..317e4b5 100644 --- a/chrome/browser/tab_contents/tab_contents_ssl_helper.cc +++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.cc @@ -246,8 +246,11 @@ void TabContentsSSLHelper::SelectClientCertificate( void TabContentsSSLHelper::ShowClientCertificateRequestDialog( scoped_refptr<SSLClientAuthHandler> handler) { + // TODO(rhashimoto): WebUI certificate selector for touch. +#if !defined(TOUCH_UI) browser::ShowSSLClientCertificateSelector( tab_contents_, handler->cert_request_info(), handler); +#endif } void TabContentsSSLHelper::OnVerifyClientCertificateError( |
