diff options
Diffstat (limited to 'net/ocsp/nss_ocsp.cc')
-rw-r--r-- | net/ocsp/nss_ocsp.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ocsp/nss_ocsp.cc b/net/ocsp/nss_ocsp.cc index 1eb0b21..07cd019 100644 --- a/net/ocsp/nss_ocsp.cc +++ b/net/ocsp/nss_ocsp.cc @@ -915,7 +915,7 @@ char* GetAlternateOCSPAIAInfo(CERTCertificate *cert) { namespace net { -void SetMessageLoopForOCSP() { +void SetMessageLoopForNSSHttpIO() { // Must have a MessageLoopForIO. DCHECK(MessageLoopForIO::current()); @@ -925,17 +925,17 @@ void SetMessageLoopForOCSP() { DCHECK(!used); } -void EnsureOCSPInit() { +void EnsureNSSHttpIOInit() { g_ocsp_io_loop.Get().StartUsing(); g_ocsp_nss_initialization.Get(); } -void ShutdownOCSP() { +void ShutdownNSSHttpIO() { g_ocsp_io_loop.Get().Shutdown(); } // This function would be called before NSS initialization. -void SetURLRequestContextForOCSP(URLRequestContext* request_context) { +void SetURLRequestContextForNSSHttpIO(URLRequestContext* request_context) { pthread_mutex_lock(&g_request_context_lock); if (request_context) { DCHECK(!g_request_context); |