| 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);
|
|
|
|
|