chromium/net/cert/cert_database.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/cert/cert_database.h"

#include "base/metrics/histogram_functions.h"
#include "base/observer_list_threadsafe.h"
#include "build/build_config.h"
#include "net/log/net_log.h"
#include "net/log/net_log_values.h"

namespace net {

namespace {

void RecordNotificationHistogram(CertDatabase::HistogramNotificationType type) {}

}  // namespace

// static
CertDatabase* CertDatabase::GetInstance() {}

void CertDatabase::AddObserver(Observer* observer) {}

void CertDatabase::RemoveObserver(Observer* observer) {}

void CertDatabase::NotifyObserversTrustStoreChanged() {}

void CertDatabase::NotifyObserversClientCertStoreChanged() {}

CertDatabase::CertDatabase()
    :{}

}  // namespace net