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

Unified Diff: chrome/browser/ui/webui/ntp/most_visited_handler.h

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/most_visited_handler.h
diff --git a/chrome/browser/ui/webui/ntp/most_visited_handler.h b/chrome/browser/ui/webui/ntp/most_visited_handler.h
index 89d20fb887741b15f41e62e5227eaf7ed571272b..7f304922dba8d557039f2841d4842ae54ef28787 100644
--- a/chrome/browser/ui/webui/ntp/most_visited_handler.h
+++ b/chrome/browser/ui/webui/ntp/most_visited_handler.h
@@ -37,10 +37,10 @@ class MostVisitedHandler : public content::WebUIMessageHandler,
public:
MostVisitedHandler();
- virtual ~MostVisitedHandler();
+ ~MostVisitedHandler() override;
// WebUIMessageHandler override and implementation.
- virtual void RegisterMessages() override;
+ void RegisterMessages() override;
// Callback for the "getMostVisited" message.
void HandleGetMostVisited(const base::ListValue* args);
@@ -61,9 +61,9 @@ class MostVisitedHandler : public content::WebUIMessageHandler,
void HandleMostVisitedSelected(const base::ListValue* args);
// content::NotificationObserver implementation.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
const std::vector<GURL>& most_visited_urls() const {
return most_visited_urls_;

Powered by Google App Engine
This is Rietveld 408576698