| Index: chrome/browser/ui/browser_instant_controller.h
|
| diff --git a/chrome/browser/ui/browser_instant_controller.h b/chrome/browser/ui/browser_instant_controller.h
|
| index 1402bfb0d38d290fb997473e8771acd1c1835d05..6e35ae9b76a0ce9b9ade48148b9f95cc4adb0f66 100644
|
| --- a/chrome/browser/ui/browser_instant_controller.h
|
| +++ b/chrome/browser/ui/browser_instant_controller.h
|
| @@ -25,7 +25,7 @@ class BrowserInstantController : public SearchModelObserver,
|
| public InstantServiceObserver {
|
| public:
|
| explicit BrowserInstantController(Browser* browser);
|
| - virtual ~BrowserInstantController();
|
| + ~BrowserInstantController() override;
|
|
|
| // Commits the current Instant, returning true on success. This is intended
|
| // for use from OpenCurrentURL.
|
| @@ -49,11 +49,11 @@ class BrowserInstantController : public SearchModelObserver,
|
|
|
| private:
|
| // SearchModelObserver:
|
| - virtual void ModelChanged(const SearchModel::State& old_state,
|
| - const SearchModel::State& new_state) override;
|
| + void ModelChanged(const SearchModel::State& old_state,
|
| + const SearchModel::State& new_state) override;
|
|
|
| // InstantServiceObserver:
|
| - virtual void DefaultSearchProviderChanged() override;
|
| + void DefaultSearchProviderChanged() override;
|
|
|
| // Replaces the contents at tab |index| with |new_contents| and deletes the
|
| // existing contents.
|
|
|