Fix breakages in https://codereview.chromium.org/1155713003/
[chromium-blink-merge.git] / ios / web / net / cert_store_impl.h
blob8e2154c21fb20d97e084545ac04ac833ecc0852e
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IOS_WEB_NET_CERT_STORE_IMPL_H_
6 #define IOS_WEB_NET_CERT_STORE_IMPL_H_
8 #include "base/memory/singleton.h"
9 #include "ios/web/net/request_tracker_data_memoizing_store.h"
10 #include "ios/web/public/cert_store.h"
11 #include "net/cert/x509_certificate.h"
13 namespace web {
15 class CertStoreImpl : public CertStore {
16 public:
17 // Returns the singleton instance of the CertStore.
18 static CertStoreImpl* GetInstance();
20 // CertStore implementation:
21 int StoreCert(net::X509Certificate* cert, int group_id) override;
22 bool RetrieveCert(int cert_id,
23 scoped_refptr<net::X509Certificate>* cert) override;
24 void RemoveCertsForGroup(int group_id) override;
26 protected:
27 CertStoreImpl();
28 ~CertStoreImpl() override;
30 private:
31 friend struct DefaultSingletonTraits<CertStoreImpl>;
33 RequestTrackerDataMemoizingStore<net::X509Certificate> store_;
35 DISALLOW_COPY_AND_ASSIGN(CertStoreImpl);
38 } // namespace web
40 #endif // IOS_WEB_NET_CERT_STORE_IMPL_H_