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

Unified Diff: content/browser/signed_certificate_timestamp_store_impl.cc

Issue 1772603002: Addition of Certificate Transparency details to Security panel of DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed SignedCertificateTimestampStore and SignedCertificateTimestampIDStatus(List) Created 4 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 side-by-side diff with in-line comments
Download patch
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
deleted file mode 100644
index 14a8cd54dc2dd1b13914bdb4882dd83ff30dcc11..0000000000000000000000000000000000000000
--- a/content/browser/signed_certificate_timestamp_store_impl.cc
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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 base::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

Powered by Google App Engine
This is Rietveld 408576698