| Index: chrome/browser/ui/views/location_bar/star_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/star_view.h b/chrome/browser/ui/views/location_bar/star_view.h
|
| index dcfe68549919b20dccebe1fcf12409faef9344aa..58f4f2e661a74a195f7086c2d9efaa51dce51cc5 100644
|
| --- a/chrome/browser/ui/views/location_bar/star_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/star_view.h
|
| @@ -13,16 +13,15 @@ class CommandUpdater;
|
| class StarView : public BubbleIconView {
|
| public:
|
| explicit StarView(CommandUpdater* command_updater);
|
| - virtual ~StarView();
|
| + ~StarView() override;
|
|
|
| // Toggles the star on or off.
|
| void SetToggled(bool on);
|
|
|
| protected:
|
| // BubbleIconView:
|
| - virtual bool IsBubbleShowing() const override;
|
| - virtual void OnExecuting(
|
| - BubbleIconView::ExecuteSource execute_source) override;
|
| + bool IsBubbleShowing() const override;
|
| + void OnExecuting(BubbleIconView::ExecuteSource execute_source) override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(StarView);
|
|
|