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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/cert_database.h" 5 #include "net/base/cert_database.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/base/net_errors.h"
8 9
9 namespace net { 10 namespace net {
10 11
11 CertDatabase::CertDatabase() { 12 CertDatabase::CertDatabase() {
12 NOTIMPLEMENTED(); 13 NOTIMPLEMENTED();
13 } 14 }
14 15
15 bool CertDatabase::AddUserCert(const char* data, int len) { 16 int CertDatabase::CheckUserCert(X509Certificate* cert) {
16 NOTIMPLEMENTED(); 17 NOTIMPLEMENTED();
17 return false; 18 return ERR_NOT_IMPLEMENTED;
19 }
20
21 int CertDatabase::AddUserCert(X509Certificate* cert) {
22 NOTIMPLEMENTED();
23 return ERR_NOT_IMPLEMENTED;
18 } 24 }
19 25
20 void CertDatabase::Init() { 26 void CertDatabase::Init() {
21 NOTIMPLEMENTED(); 27 NOTIMPLEMENTED();
22 } 28 }
23 29
24 } // namespace net 30 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698