HomeSort by relevance Sort by last modified time
    Searched defs:SSLClientAuthHandler (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/browser/ssl/
ssl_client_auth_handler.h 27 class CONTENT_EXPORT SSLClientAuthHandler
29 SSLClientAuthHandler, BrowserThread::DeleteOnIOThread> {
31 SSLClientAuthHandler(net::URLRequest* request,
48 virtual ~SSLClientAuthHandler();
52 SSLClientAuthHandler, BrowserThread::DeleteOnIOThread>;
54 friend class base::DeleteHelper<SSLClientAuthHandler>;
73 DISALLOW_COPY_AND_ASSIGN(SSLClientAuthHandler);
ssl_client_auth_handler.cc 19 SSLClientAuthHandler::SSLClientAuthHandler(
29 SSLClientAuthHandler::~SSLClientAuthHandler() {
34 void SSLClientAuthHandler::OnRequestCancelled() {
38 void SSLClientAuthHandler::SelectCertificate() {
50 // will be dropped and the scoped_refptr to SSLClientAuthHandler will go
56 &SSLClientAuthHandler::DoSelectCertificate, this,
60 void SSLClientAuthHandler::CertificateSelected(net::X509Certificate* cert) {
67 &SSLClientAuthHandler::DoCertificateSelected, this
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_client_auth_handler.h 25 class SSLClientAuthHandler
26 : public base::RefCountedThreadSafe<SSLClientAuthHandler,
29 SSLClientAuthHandler(net::URLRequest* request,
56 friend class DeleteTask<SSLClientAuthHandler>;
58 virtual ~SSLClientAuthHandler();
70 DISALLOW_COPY_AND_ASSIGN(SSLClientAuthHandler);
76 SSLClientAuthHandler* handler);
87 // Begins observing notifications from other SSLClientAuthHandler instances.
100 scoped_refptr<SSLClientAuthHandler> handler_;
ssl_client_auth_handler.cc 16 SSLClientAuthHandler::SSLClientAuthHandler(
23 SSLClientAuthHandler::~SSLClientAuthHandler() {
28 void SSLClientAuthHandler::OnRequestCancelled() {
32 void SSLClientAuthHandler::SelectCertificate() {
43 // will be dropped and the scoped_refptr to SSLClientAuthHandler will go
49 scoped_refptr<SSLClientAuthHandler>(this));
54 void SSLClientAuthHandler::CertificateSelected(net::X509Certificate* cert) {
61 Source<SSLClientAuthHandler>(this)
    [all...]

Completed in 285 milliseconds