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

Unified Diff: content/browser/cert_store_impl.h

Issue 2327433002: Stop using CertStore which is not compatible with PlzNavigate. (Closed)
Patch Set: remove cert_store on ios Created 4 years, 3 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/cert_store_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/cert_store_impl.h
diff --git a/content/browser/cert_store_impl.h b/content/browser/cert_store_impl.h
deleted file mode 100644
index b4ef08c00446c45a668c6b9ffba374c66288683e..0000000000000000000000000000000000000000
--- a/content/browser/cert_store_impl.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CONTENT_BROWSER_CERT_STORE_IMPL_H_
-#define CONTENT_BROWSER_CERT_STORE_IMPL_H_
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/singleton.h"
-#include "content/browser/renderer_data_memoizing_store.h"
-#include "content/public/browser/cert_store.h"
-#include "net/base/hash_value.h"
-#include "net/cert/x509_certificate.h"
-
-namespace content {
-
-class CertStoreImpl : public CertStore {
- public:
- // Returns the singleton instance of the CertStore.
- static CertStoreImpl* GetInstance();
-
- // CertStore implementation:
- int StoreCert(net::X509Certificate* cert,
- int render_process_host_id) override;
- bool RetrieveCert(int cert_id,
- scoped_refptr<net::X509Certificate>* cert) override;
-
- protected:
- CertStoreImpl();
- ~CertStoreImpl() override;
-
- private:
- friend struct base::DefaultSingletonTraits<CertStoreImpl>;
-
- // Utility structure that allows memoization to be based on the
- // hash of |cert|'s certificate chain, to avoid needing to compare
- // every certificate individually. This is purely an optimization.
- class HashAndCert : public base::RefCountedThreadSafe<HashAndCert> {
- public:
- HashAndCert();
-
- // Comparator for RendererDataMemoizingStore.
- struct LessThan {
- bool operator()(const scoped_refptr<HashAndCert>& lhs,
- const scoped_refptr<HashAndCert>& rhs) const;
- };
-
- net::SHA256HashValue chain_hash;
- scoped_refptr<net::X509Certificate> cert;
-
- private:
- friend class base::RefCountedThreadSafe<HashAndCert>;
-
- ~HashAndCert();
-
- DISALLOW_COPY_AND_ASSIGN(HashAndCert);
- };
- RendererDataMemoizingStore<HashAndCert> store_;
-
- DISALLOW_COPY_AND_ASSIGN(CertStoreImpl);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_CERT_STORE_IMPL_H_
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/cert_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698