OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |