diff options
Diffstat (limited to 'net/base/cert_database_win.cc')
-rw-r--r-- | net/base/cert_database_win.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/base/cert_database_win.cc b/net/base/cert_database_win.cc new file mode 100644 index 0000000..5caf9db --- /dev/null +++ b/net/base/cert_database_win.cc @@ -0,0 +1,24 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "net/base/cert_database.h" + +#include "base/logging.h" + +namespace net { + +CertDatabase::CertDatabase() { + NOTIMPLEMENTED(); +} + +bool CertDatabase::AddUserCert(const char* data, int len) { + NOTIMPLEMENTED(); + return false; +} + +void CertDatabase::Init() { + NOTIMPLEMENTED(); +} + +} // namespace net |