Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Side by Side Diff: chrome/browser/ui/views/fullscreen_exit_bubble_views.h

Issue 7635021: Add missing virtual in overridden functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/ui/fullscreen_exit_bubble.h" 10 #include "chrome/browser/ui/fullscreen_exit_bubble.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 // The root view containing us. 46 // The root view containing us.
47 views::View* root_view_; 47 views::View* root_view_;
48 48
49 views::Widget* popup_; 49 views::Widget* popup_;
50 50
51 // Animation controlling sliding into/out of the top of the screen. 51 // Animation controlling sliding into/out of the top of the screen.
52 scoped_ptr<ui::SlideAnimation> size_animation_; 52 scoped_ptr<ui::SlideAnimation> size_animation_;
53 53
54 // ui::AnimationDelegate: 54 // ui::AnimationDelegate:
55 void AnimationProgressed(const ui::Animation* animation); 55 virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
56 void AnimationEnded(const ui::Animation* animation); 56 virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
57 57
58 // The contents of the popup. 58 // The contents of the popup.
59 FullscreenExitView* view_; 59 FullscreenExitView* view_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubbleViews); 61 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubbleViews);
62 }; 62 };
63 63
64 #endif // CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_ 64 #endif // CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698