Chromium Code Reviews| Index: content/browser/signed_certificate_timestamp_store_impl.cc |
| diff --git a/content/browser/signed_certificate_timestamp_store_impl.cc b/content/browser/signed_certificate_timestamp_store_impl.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8227494e447184a5ed0da1d07161c4a160642e4e |
| --- /dev/null |
| +++ b/content/browser/signed_certificate_timestamp_store_impl.cc |
| @@ -0,0 +1,37 @@ |
| +// 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" |
| + |
| +namespace content { |
| + |
| +// static |
| +SignedCertificateTimestampStore* |
| + SignedCertificateTimestampStore::GetInstance() { |
|
wtc
2013/11/19 21:41:44
The style guide recommends NOT indenting this line
wtc
2013/11/21 03:13:46
Please fix this, unless clang format recommends fo
alcutter
2013/11/21 10:48:19
Sorry, I think I fixed this and then somehow undid
|
| + 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 |