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

Unified Diff: content/browser/signed_certificate_timestamp_store_impl.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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.h
diff --git a/content/browser/signed_certificate_timestamp_store_impl.h b/content/browser/signed_certificate_timestamp_store_impl.h
index 56007755881ee080b220a3560ac660c6674a0e7f..b2f728a57ddaf892c4ba43e05fd8dc873234885a 100644
--- a/content/browser/signed_certificate_timestamp_store_impl.h
+++ b/content/browser/signed_certificate_timestamp_store_impl.h
@@ -20,10 +20,9 @@ class SignedCertificateTimestampStoreImpl
static SignedCertificateTimestampStoreImpl* GetInstance();
// SignedCertificateTimestampStore implementation:
- virtual int Store(
- net::ct::SignedCertificateTimestamp* sct,
- int render_process_host_id) override;
- virtual bool Retrieve(
+ int Store(net::ct::SignedCertificateTimestamp* sct,
+ int render_process_host_id) override;
+ bool Retrieve(
int sct_id,
scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) override;
@@ -31,7 +30,7 @@ class SignedCertificateTimestampStoreImpl
friend struct DefaultSingletonTraits<SignedCertificateTimestampStoreImpl>;
SignedCertificateTimestampStoreImpl();
- virtual ~SignedCertificateTimestampStoreImpl();
+ ~SignedCertificateTimestampStoreImpl() override;
RendererDataMemoizingStore<net::ct::SignedCertificateTimestamp> store_;
« no previous file with comments | « content/browser/shared_worker/shared_worker_service_impl_unittest.cc ('k') | content/browser/site_instance_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698