Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Unified Diff: net/base/cert_database_mac.cc

Issue 843005: Adds support for the <keygen> element to Windows, matching support present on... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Fixing remaining issues Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/cert_database.h ('k') | net/base/cert_database_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_database_mac.cc
===================================================================
--- net/base/cert_database_mac.cc (revision 43235)
+++ net/base/cert_database_mac.cc (working copy)
@@ -8,15 +8,13 @@
#include "base/logging.h"
#include "net/base/net_errors.h"
+#include "net/base/x509_certificate.h"
namespace net {
CertDatabase::CertDatabase() {
}
-void CertDatabase::Init() {
-}
-
int CertDatabase::CheckUserCert(X509Certificate* cert) {
if (!cert)
return ERR_CERT_INVALID;
@@ -51,7 +49,7 @@
default:
LOG(ERROR) << "CertDatabase failed to add cert to keychain: " << err;
// TODO(snej): Map the error code more intelligently.
- return ERR_ERR_ADD_USER_CERT_FAILED;
+ return ERR_ADD_USER_CERT_FAILED;
}
}
« no previous file with comments | « net/base/cert_database.h ('k') | net/base/cert_database_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698