OLD | NEW |
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 |
OLD | NEW |