diff options
Diffstat (limited to 'content/browser/cert_store_impl.h')
-rw-r--r-- | content/browser/cert_store_impl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/cert_store_impl.h b/content/browser/cert_store_impl.h index aa8786d..d8b689c 100644 --- a/content/browser/cert_store_impl.h +++ b/content/browser/cert_store_impl.h @@ -18,14 +18,14 @@ class CertStoreImpl : public CertStore { static CertStoreImpl* GetInstance(); // CertStore implementation: - virtual int StoreCert(net::X509Certificate* cert, - int render_process_host_id) override; - virtual bool RetrieveCert(int cert_id, - scoped_refptr<net::X509Certificate>* cert) override; + int StoreCert(net::X509Certificate* cert, + int render_process_host_id) override; + bool RetrieveCert(int cert_id, + scoped_refptr<net::X509Certificate>* cert) override; protected: CertStoreImpl(); - virtual ~CertStoreImpl(); + ~CertStoreImpl() override; private: friend struct DefaultSingletonTraits<CertStoreImpl>; |