| Index: chrome/browser/ui/views/location_bar/zoom_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/location_bar/zoom_bubble_view.h b/chrome/browser/ui/views/location_bar/zoom_bubble_view.h
|
| index 58d83d5f8489529607534b3a0d10a655ff8b6f4c..3440de59fc6142bddaf18627eabfe35921ddf7f8 100644
|
| --- a/chrome/browser/ui/views/location_bar/zoom_bubble_view.h
|
| +++ b/chrome/browser/ui/views/location_bar/zoom_bubble_view.h
|
| @@ -101,31 +101,31 @@ class ZoomBubbleView : public views::BubbleDelegateView,
|
|
|
| // extensions::IconImage::Observer overrides:
|
| virtual void OnExtensionIconImageChanged(
|
| - extensions::IconImage* /* image */) OVERRIDE;
|
| + extensions::IconImage* /* image */) override;
|
|
|
| // views::View methods.
|
| - virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE;
|
| - virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE;
|
| + virtual void OnMouseEntered(const ui::MouseEvent& event) override;
|
| + virtual void OnMouseExited(const ui::MouseEvent& event) override;
|
|
|
| // ui::EventHandler method.
|
| - virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
|
| + virtual void OnGestureEvent(ui::GestureEvent* event) override;
|
|
|
| // views::ButtonListener method.
|
| virtual void ButtonPressed(views::Button* sender,
|
| - const ui::Event& event) OVERRIDE;
|
| + const ui::Event& event) override;
|
|
|
| // views::BubbleDelegateView method.
|
| - virtual void Init() OVERRIDE;
|
| - virtual void WindowClosing() OVERRIDE;
|
| + virtual void Init() override;
|
| + virtual void WindowClosing() override;
|
|
|
| // content::NotificationObserver method.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // ImmersiveModeController::Observer methods.
|
| - virtual void OnImmersiveRevealStarted() OVERRIDE;
|
| - virtual void OnImmersiveModeControllerDestroyed() OVERRIDE;
|
| + virtual void OnImmersiveRevealStarted() override;
|
| + virtual void OnImmersiveModeControllerDestroyed() override;
|
|
|
| ZoomBubbleExtensionInfo extension_info_;
|
|
|
|
|