| Index: chrome/browser/ui/app_list/search/omnibox_provider.h
|
| diff --git a/chrome/browser/ui/app_list/search/omnibox_provider.h b/chrome/browser/ui/app_list/search/omnibox_provider.h
|
| index 31ff2a0ee1acdac1709087f5b39c4a18cf492260..56c13d4c88865c6fff67c82afbbbf70fbc429b9d 100644
|
| --- a/chrome/browser/ui/app_list/search/omnibox_provider.h
|
| +++ b/chrome/browser/ui/app_list/search/omnibox_provider.h
|
| @@ -23,18 +23,18 @@ class OmniboxProvider : public SearchProvider,
|
| public:
|
| explicit OmniboxProvider(Profile* profile,
|
| AppListControllerDelegate* list_controller);
|
| - virtual ~OmniboxProvider();
|
| + ~OmniboxProvider() override;
|
|
|
| // SearchProvider overrides:
|
| - virtual void Start(const base::string16& query) override;
|
| - virtual void Stop() override;
|
| + void Start(const base::string16& query) override;
|
| + void Stop() override;
|
|
|
| private:
|
| // Populates result list from AutocompleteResult.
|
| void PopulateFromACResult(const AutocompleteResult& result);
|
|
|
| // AutocompleteControllerDelegate overrides:
|
| - virtual void OnResultChanged(bool default_match_changed) override;
|
| + void OnResultChanged(bool default_match_changed) override;
|
|
|
| Profile* profile_;
|
| AppListControllerDelegate* list_controller_;
|
|
|