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

Unified Diff: net/base/cert_database_win.cc

Issue 652137: Mac: implement <keygen> support, including adding generated cert to the Keychain. (Closed)
Patch Set: Responding to review feedback. Created 10 years, 10 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
Index: net/base/cert_database_win.cc
diff --git a/net/base/cert_database_win.cc b/net/base/cert_database_win.cc
index 5caf9dbbdba99daf0e02d4edd6f3eb0ddd8f945a..7e9d8624644ab22ddda672ed94526a8dc2a14f4d 100644
--- a/net/base/cert_database_win.cc
+++ b/net/base/cert_database_win.cc
@@ -5,6 +5,7 @@
#include "net/base/cert_database.h"
#include "base/logging.h"
+#include "net/base/net_errors.h"
namespace net {
@@ -12,9 +13,14 @@ CertDatabase::CertDatabase() {
NOTIMPLEMENTED();
}
-bool CertDatabase::AddUserCert(const char* data, int len) {
+int CertDatabase::CheckUserCert(X509Certificate* cert) {
NOTIMPLEMENTED();
- return false;
+ return ERR_NOT_IMPLEMENTED;
+}
+
+int CertDatabase::AddUserCert(X509Certificate* cert) {
+ NOTIMPLEMENTED();
+ return ERR_NOT_IMPLEMENTED;
}
void CertDatabase::Init() {

Powered by Google App Engine
This is Rietveld 408576698