summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ssl/ssl_client_auth_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ssl/ssl_client_auth_handler.cc')
-rw-r--r--chrome/browser/ssl/ssl_client_auth_handler.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/ssl/ssl_client_auth_handler.cc b/chrome/browser/ssl/ssl_client_auth_handler.cc
index 74b25bf..7d5c6a5 100644
--- a/chrome/browser/ssl/ssl_client_auth_handler.cc
+++ b/chrome/browser/ssl/ssl_client_auth_handler.cc
@@ -27,7 +27,7 @@ void SSLClientAuthHandler::OnRequestCancelled() {
}
void SSLClientAuthHandler::SelectCertificate() {
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
int render_process_host_id;
int render_view_host_id;
@@ -48,14 +48,14 @@ void SSLClientAuthHandler::SelectCertificate() {
// Notify the IO thread that we have selected a cert.
void SSLClientAuthHandler::CertificateSelected(net::X509Certificate* cert) {
- ChromeThread::PostTask(
- ChromeThread::IO, FROM_HERE,
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
NewRunnableMethod(
this, &SSLClientAuthHandler::DoCertificateSelected, cert));
}
void SSLClientAuthHandler::DoCertificateSelected(net::X509Certificate* cert) {
- DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
// request_ could have been NULLed if the request was cancelled while the
// user was choosing a cert, or because we have already responded to the
// certificate.