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

Unified Diff: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
diff --git a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
index 262bc8d2ff8b8c163ef7a1f4c432f4f3f82d06fd..d0117449c1a6369090c13a7622f8f916fb486134 100644
--- a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
+++ b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
@@ -49,10 +49,10 @@ class ExtensionIconColorManager : public ExtensionIconManager {
explicit ExtensionIconColorManager(FaviconWebUIHandler* handler)
: ExtensionIconManager(),
handler_(handler) {}
- virtual ~ExtensionIconColorManager() {}
+ ~ExtensionIconColorManager() override {}
- virtual void OnImageLoaded(const std::string& extension_id,
- const gfx::Image& image) override {
+ void OnImageLoaded(const std::string& extension_id,
+ const gfx::Image& image) override {
ExtensionIconManager::OnImageLoaded(extension_id, image);
handler_->NotifyAppIconReady(extension_id);
}

Powered by Google App Engine
This is Rietveld 408576698