diff --git a/libcef/browser/resource_context.cc b/libcef/browser/resource_context.cc index 08016d7d7..2cb3093d5 100644 --- a/libcef/browser/resource_context.cc +++ b/libcef/browser/resource_context.cc @@ -8,7 +8,7 @@ #include "base/logging.h" #include "content/public/browser/browser_thread.h" -#if defined(USE_NSS_CERTS) +#if defined(USE_NSS) #include "net/ssl/client_cert_store_nss.h" #endif @@ -48,7 +48,7 @@ net::URLRequestContext* CefResourceContext::GetRequestContext() { } scoped_ptr CefResourceContext::CreateClientCertStore() { -#if defined(USE_NSS_CERTS) +#if defined(USE_NSS) return scoped_ptr(new net::ClientCertStoreNSS( net::ClientCertStoreNSS::PasswordDelegateFactory())); #elif defined(OS_WIN)