blob: 9397ebdf5c2f44ab382f24c1a801fc8ed7f6184e (
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
|
// Copyright 2013 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 "content/browser/signed_certificate_timestamp_store_impl.h"
#include "base/memory/singleton.h"
namespace content {
// static
SignedCertificateTimestampStore*
SignedCertificateTimestampStore::GetInstance() {
return SignedCertificateTimestampStoreImpl::GetInstance();
}
// static
SignedCertificateTimestampStoreImpl*
SignedCertificateTimestampStoreImpl::GetInstance() {
return Singleton<SignedCertificateTimestampStoreImpl>::get();
}
SignedCertificateTimestampStoreImpl::SignedCertificateTimestampStoreImpl() {}
SignedCertificateTimestampStoreImpl::~SignedCertificateTimestampStoreImpl() {}
int SignedCertificateTimestampStoreImpl::Store(
net::ct::SignedCertificateTimestamp* sct,
int process_id) {
return store_.Store(sct, process_id);
}
bool SignedCertificateTimestampStoreImpl::Retrieve(
int sct_id,
scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) {
return store_.Retrieve(sct_id, sct);
}
} // namespace content
|