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

Unified Diff: content/browser/sct_store_impl.cc

Issue 71633002: Convert SignedCertificateClass to be ref_counted, and add an SCTStore in which to store them. Add S… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: few lint fixes Created 7 years, 1 month 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
« no previous file with comments | « content/browser/sct_store_impl.h ('k') | content/browser/ssl/ssl_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/sct_store_impl.cc
diff --git a/content/browser/sct_store_impl.cc b/content/browser/sct_store_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6450e39d8b0206ceb9eca21cffffbfabe2e63494
--- /dev/null
+++ b/content/browser/sct_store_impl.cc
@@ -0,0 +1,47 @@
+// Copyright (c) 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/sct_store_impl.h"
+
+#include <algorithm>
+#include <functional>
+
+#include "base/bind.h"
+#include "base/stl_util.h"
+#include "content/browser/renderer_host/render_process_host_impl.h"
+#include "content/browser/renderer_host/render_view_host_impl.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/browser/notification_service.h"
+#include "content/public/browser/notification_types.h"
+
+namespace content {
+
+// static
+SignedCertificateTimestampStore*
+SignedCertificateTimestampStore::GetInstance() {
+ return SCTStoreImpl::GetInstance();
+}
+
+// static
+SCTStoreImpl* SCTStoreImpl::GetInstance() {
+ return Singleton<SCTStoreImpl>::get();
+}
+
+SCTStoreImpl::SCTStoreImpl() : store_() {}
+
+SCTStoreImpl::~SCTStoreImpl() {}
+
+int SCTStoreImpl::StoreSignedCertificateTimestamp(
+ net::ct::SignedCertificateTimestamp* sct,
+ int process_id) {
+ return store_.Store(sct, process_id);
+}
+
+bool SCTStoreImpl::RetrieveSignedCertificateTimestamp(
+ int sct_id,
+ scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) {
+ return store_.Retrieve(sct_id, sct);
+}
+
+} // namespace content
« no previous file with comments | « content/browser/sct_store_impl.h ('k') | content/browser/ssl/ssl_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698