Standardize usage of virtual/override/final in chrome/browser/

BUG=417463
[email protected]

Review URL: https://codereview.chromium.org/648653003

Cr-Commit-Position: refs/heads/master@{#300440}
diff --git a/chrome/browser/image_holder.h b/chrome/browser/image_holder.h
index 3bfab63..a2bd2c4 100644
--- a/chrome/browser/image_holder.h
+++ b/chrome/browser/image_holder.h
@@ -30,7 +30,7 @@
               const GURL& high_dpi_url,
               Profile* profile,
               ImageHolderDelegate* delegate);
-  virtual ~ImageHolder();
+  ~ImageHolder() override;
 
   // Begin fetching of the URLs we have.
   void StartFetch();
@@ -40,7 +40,7 @@
   bool IsFetchingDone() const;
 
   // Inherited from BitmapFetcherDelegate
-  virtual void OnFetchComplete(const GURL url, const SkBitmap* bitmap) override;
+  void OnFetchComplete(const GURL url, const SkBitmap* bitmap) override;
 
   // Accessors:
   GURL low_dpi_url() const { return low_dpi_url_; }