| Index: net/base/cert_database.cc
|
| diff --git a/net/base/cert_database.cc b/net/base/cert_database.cc
|
| deleted file mode 100644
|
| index ec2f0b89da9807fde068fd8a51d99b3cc7da9249..0000000000000000000000000000000000000000
|
| --- a/net/base/cert_database.cc
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -// Copyright (c) 2012 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/memory/singleton.h"
|
| -#include "base/observer_list_threadsafe.h"
|
| -
|
| -namespace net {
|
| -
|
| -// static
|
| -CertDatabase* CertDatabase::GetInstance() {
|
| - return Singleton<CertDatabase>::get();
|
| -}
|
| -
|
| -void CertDatabase::AddObserver(Observer* observer) {
|
| - observer_list_->AddObserver(observer);
|
| -}
|
| -
|
| -void CertDatabase::RemoveObserver(Observer* observer) {
|
| - observer_list_->RemoveObserver(observer);
|
| -}
|
| -
|
| -void CertDatabase::NotifyObserversOfCertAdded(const X509Certificate* cert) {
|
| - observer_list_->Notify(&Observer::OnCertAdded, make_scoped_refptr(cert));
|
| -}
|
| -
|
| -void CertDatabase::NotifyObserversOfCertRemoved(const X509Certificate* cert) {
|
| - observer_list_->Notify(&Observer::OnCertRemoved, make_scoped_refptr(cert));
|
| -}
|
| -
|
| -void CertDatabase::NotifyObserversOfCertTrustChanged(
|
| - const X509Certificate* cert) {
|
| - observer_list_->Notify(
|
| - &Observer::OnCertTrustChanged, make_scoped_refptr(cert));
|
| -}
|
| -
|
| -} // namespace net
|
|
|