| Index: chrome/browser/ui/views/fullscreen_exit_bubble_views.h
|
| diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
|
| index bd94d2c1a42c33abfd01741184e04bed47e0d0d5..28fe7317aeaee824fc0e6f352a1c68e5cad06250 100644
|
| --- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
|
| +++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h
|
| @@ -53,6 +53,10 @@ class FullscreenExitBubbleViews : public views::LinkListener,
|
| // views::LinkListener:
|
| virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE;
|
|
|
| + // ui::AnimationDelegate:
|
| + virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
|
| + virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
|
| +
|
| // The root view containing us.
|
| views::View* root_view_;
|
|
|
| @@ -61,10 +65,6 @@ class FullscreenExitBubbleViews : public views::LinkListener,
|
| // Animation controlling sliding into/out of the top of the screen.
|
| scoped_ptr<ui::SlideAnimation> size_animation_;
|
|
|
| - // ui::AnimationDelegate:
|
| - virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
|
| - virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
|
| -
|
| // The contents of the popup.
|
| FullscreenExitView* view_;
|
|
|
|
|