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

Side by Side Diff: net/cert/cert_database.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/cert/cert_database.h ('k') | net/cert/cert_database_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/cert/cert_database.h"
6
7 #include "base/memory/singleton.h"
8 #include "base/observer_list_threadsafe.h"
9
10 namespace net {
11
12 // static
13 CertDatabase* CertDatabase::GetInstance() {
14 // Leaky so it can be initialized on worker threads, and because there is no
15 // useful cleanup to do.
16 return Singleton<CertDatabase, LeakySingletonTraits<CertDatabase> >::get();
17 }
18
19 void CertDatabase::AddObserver(Observer* observer) {
20 observer_list_->AddObserver(observer);
21 }
22
23 void CertDatabase::RemoveObserver(Observer* observer) {
24 observer_list_->RemoveObserver(observer);
25 }
26
27 void CertDatabase::NotifyObserversOfCertAdded(const X509Certificate* cert) {
28 observer_list_->Notify(FROM_HERE, &Observer::OnCertAdded,
29 make_scoped_refptr(cert));
30 }
31
32 void CertDatabase::NotifyObserversOfCertRemoved(const X509Certificate* cert) {
33 observer_list_->Notify(FROM_HERE, &Observer::OnCertRemoved,
34 make_scoped_refptr(cert));
35 }
36
37 void CertDatabase::NotifyObserversOfCACertChanged(
38 const X509Certificate* cert) {
39 observer_list_->Notify(FROM_HERE, &Observer::OnCACertChanged,
40 make_scoped_refptr(cert));
41 }
42
43 } // namespace net
OLDNEW
« no previous file with comments | « net/cert/cert_database.h ('k') | net/cert/cert_database_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698