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

Unified Diff: chrome/browser/ui/webui/ntp/suggestions_source_top_sites.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/suggestions_source_top_sites.h
diff --git a/chrome/browser/ui/webui/ntp/suggestions_source_top_sites.h b/chrome/browser/ui/webui/ntp/suggestions_source_top_sites.h
index b23373a9cb10683ea06a2370098c6111ee2cf832..818397c24768dde6002df8e3ec7cfa35b7e7eab9 100644
--- a/chrome/browser/ui/webui/ntp/suggestions_source_top_sites.h
+++ b/chrome/browser/ui/webui/ntp/suggestions_source_top_sites.h
@@ -25,16 +25,16 @@ class DictionaryValue;
class SuggestionsSourceTopSites : public SuggestionsSource {
public:
SuggestionsSourceTopSites();
- virtual ~SuggestionsSourceTopSites();
+ ~SuggestionsSourceTopSites() override;
protected:
// SuggestionsSource overrides:
- virtual void SetDebug(bool enable) override;
- virtual int GetWeight() override;
- virtual int GetItemCount() override;
- virtual base::DictionaryValue* PopItem() override;
- virtual void FetchItems(Profile* profile) override;
- virtual void SetCombiner(SuggestionsCombiner* combiner) override;
+ void SetDebug(bool enable) override;
+ int GetWeight() override;
+ int GetItemCount() override;
+ base::DictionaryValue* PopItem() override;
+ void FetchItems(Profile* profile) override;
+ void SetCombiner(SuggestionsCombiner* combiner) override;
void OnSuggestionsUrlsAvailable(const history::FilteredURLList* data);

Powered by Google App Engine
This is Rietveld 408576698