summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/KeyChainLookup.java
Commit message (Collapse)AuthorAgeFilesLines
* Add Client certificate support to AOSP browserSelim Gurun2014-04-241-0/+52
| | | | | | | | | | | Bug: 14298085 The webview client cert API is not public at the time. This change adds client certificate support to AOSP browser via this hidden API mostly for testing purposes. We will be continuously updating Browser as the API changes since browser is the main testing tool for it. Change-Id: Idc993b4ebb5635a06435aaccdfa0e418a91ce48f
* De-classicify Android Browser part 2Jonathan Dixon2013-08-251-52/+0
| | | | | | | | | | Bug: 10427705 Allows Browser to compile even when WebViewClassic is no longer in frameworks/base. The deleted functionality was already disabled at runtime when using non-classic webview. Change-Id: I21b58ec52ac059c699b49a2dd80008d9a9e6791a
* Cache the application context instead of Activity.Ben Murdoch2011-08-011-1/+1
| | | | | | | | | When storing a reference to a Context, ensure that it's the Application context rather than Activity Context. Bug: 5084293 Change-Id: Ib0be5f8ceb91846bb985d0813a8f22cabd44eaf8
* Tracking KeyChain API refinementsBrian Carlstrom2011-06-091-2/+2
| | | | Change-Id: Ia1a07c443b3c2e0373eeb4a7f5cffa65bbed17a0
* Provide Browser implementation of WebViewClient.onReceivedClientCertRequestBrian Carlstrom2011-06-091-0/+52
Following the example of onReceivedSslError, implement onReceivedClientCertRequest ERROR CASE CLIENT CERT CASE <... From frameworks/base ...> <... From frameworks/base ...> Tab.SubWindowClient.onReceivedSslError Tab.SubWindowClient.onReceivedClientCertRequest Tab.mWebViewClient.onReceivedSslError Tab.mWebViewClient.onReceivedClientCertRequest <... ssl_warnings dialog ...> <... KeyChain.choosePrivateKeyAlias/KeyChainLookup ...> SslErrorHandler.proceed (with SslCertLookupTable) ClientCertRequestHandler.proceed (with SslClientCertLookupTable) <... To frameworks/base ...> <... To frameworks/base ...> Change-Id: I3ed3789c4efc97c87ab4773cdaed3e654a1fd1e3