mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Linux: Replace USE_NSS_CERTS with USE_NSS because the former does not exist in this branch (issue #1636)
This commit is contained in:
@@ -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<net::ClientCertStore> CefResourceContext::CreateClientCertStore() {
|
||||
#if defined(USE_NSS_CERTS)
|
||||
#if defined(USE_NSS)
|
||||
return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreNSS(
|
||||
net::ClientCertStoreNSS::PasswordDelegateFactory()));
|
||||
#elif defined(OS_WIN)
|
||||
|
Reference in New Issue
Block a user