From 00ea022b81af00857b352bae68d4ba2eb3e1493b Mon Sep 17 00:00:00 2001 From: dcheng Date: Tue, 21 Oct 2014 04:24:56 -0700 Subject: Standardize usage of virtual/override/final in components/ BUG=417463 TBR=blundell@chromium.org Review URL: https://codereview.chromium.org/666133002 Cr-Commit-Position: refs/heads/master@{#300456} --- components/favicon_base/select_favicon_frames.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/favicon_base') diff --git a/components/favicon_base/select_favicon_frames.cc b/components/favicon_base/select_favicon_frames.cc index d53225d..492d211 100644 --- a/components/favicon_base/select_favicon_frames.cc +++ b/components/favicon_base/select_favicon_frames.cc @@ -171,10 +171,10 @@ SkBitmap GetResizedBitmap(const SkBitmap& source_bitmap, class FaviconImageSource : public gfx::ImageSkiaSource { public: FaviconImageSource() {} - virtual ~FaviconImageSource() {} + ~FaviconImageSource() override {} // gfx::ImageSkiaSource: - virtual gfx::ImageSkiaRep GetImageForScale(float scale) override { + gfx::ImageSkiaRep GetImageForScale(float scale) override { const gfx::ImageSkiaRep* rep = NULL; // gfx::ImageSkia passes one of the resource scale factors. The source // should return: -- cgit v1.1