summaryrefslogtreecommitdiffstats
path: root/net/base/cert_database.cc
blob: 7930750757de371ef6df10bfbffbeb98da1cf4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// 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 {

CertDatabase::ImportCertFailure::ImportCertFailure(
    X509Certificate* cert, int err)
    : certificate(cert), net_error(err) {
}

CertDatabase::ImportCertFailure::~ImportCertFailure() {
}

// CertDatabaseNotifier notifies registered observers when new user certificates
// are added to the database.
class CertDatabaseNotifier {
 public:
  CertDatabaseNotifier()
      : observer_list_(new ObserverListThreadSafe<CertDatabase::Observer>) {
  }

  static CertDatabaseNotifier* GetInstance() {
    return Singleton<CertDatabaseNotifier>::get();
  }

  friend struct DefaultSingletonTraits<CertDatabaseNotifier>;
  friend class CertDatabase;

 private:
  const scoped_refptr<ObserverListThreadSafe<CertDatabase::Observer> >
      observer_list_;
};

void CertDatabase::AddObserver(Observer* observer) {
  CertDatabaseNotifier::GetInstance()->observer_list_->AddObserver(observer);
}

void CertDatabase::RemoveObserver(Observer* observer) {
  CertDatabaseNotifier::GetInstance()->observer_list_->RemoveObserver(observer);
}

void CertDatabase::NotifyObserversOfUserCertAdded(const X509Certificate* cert) {
  CertDatabaseNotifier::GetInstance()->observer_list_->Notify(
      &CertDatabase::Observer::OnUserCertAdded, make_scoped_refptr(cert));
}

void CertDatabase::NotifyObserversOfUserCertRemoved(
    const X509Certificate* cert) {
  CertDatabaseNotifier::GetInstance()->observer_list_->Notify(
      &CertDatabase::Observer::OnUserCertRemoved, make_scoped_refptr(cert));
}

void CertDatabase::NotifyObserversOfCertTrustChanged(
    const X509Certificate* cert) {
  CertDatabaseNotifier::GetInstance()->observer_list_->Notify(
      &CertDatabase::Observer::OnCertTrustChanged, make_scoped_refptr(cert));
}

}  // namespace net