Linux: Replace USE_NSS_CERTS with USE_NSS because the former does not exist in this branch (issue #1636)

This commit is contained in:
Marshall Greenblatt
2015-05-26 12:13:03 -04:00
parent 41b717075e
commit 7b49af6182

View File

@@ -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)