Commit b330f8a6 authored by tony@chromium.org's avatar tony@chromium.org

Add missing virtual in overridden functions.

Caught by clang chromiumos bot.

TBR=thakis

Review URL: http://codereview.chromium.org/7635021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96570 0039d316-1c4b-4281-b951-d872f2087c98
parent 7dd2b871
...@@ -52,8 +52,8 @@ class FullscreenExitBubbleViews : public views::LinkListener, ...@@ -52,8 +52,8 @@ class FullscreenExitBubbleViews : public views::LinkListener,
scoped_ptr<ui::SlideAnimation> size_animation_; scoped_ptr<ui::SlideAnimation> size_animation_;
// ui::AnimationDelegate: // ui::AnimationDelegate:
void AnimationProgressed(const ui::Animation* animation); virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
void AnimationEnded(const ui::Animation* animation); virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
// The contents of the popup. // The contents of the popup.
FullscreenExitView* view_; FullscreenExitView* view_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment