Index: extensions/browser/content_hash_fetcher.cc |
diff --git a/extensions/browser/content_hash_fetcher.cc b/extensions/browser/content_hash_fetcher.cc |
index cbf032d2a606726b796ab68a3a82a5ec02f7a875..e4190be3b533cf7e167f090399aa2896055972f4 100644 |
--- a/extensions/browser/content_hash_fetcher.cc |
+++ b/extensions/browser/content_hash_fetcher.cc |
@@ -82,7 +82,7 @@ class ContentHashFetcherJob |
private: |
friend class base::RefCountedThreadSafe<ContentHashFetcherJob>; |
- virtual ~ContentHashFetcherJob(); |
+ ~ContentHashFetcherJob() override; |
// Tries to load a verified_contents.json file at |path|. On successfully |
// reading and validing the file, the verified_contents_ member variable will |
@@ -97,7 +97,7 @@ class ContentHashFetcherJob |
void DoneCheckingForVerifiedContents(bool found); |
// URLFetcherDelegate interface |
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override; |
+ void OnURLFetchComplete(const net::URLFetcher* source) override; |
// Callback for when we're done ensuring we have verified contents, and are |
// ready to move on to MaybeCreateHashes. |