| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/ui/fullscreen_exit_bubble.h" | 11 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble.h" |
| 12 | 12 |
| 13 class GURL; | 13 class GURL; |
| 14 namespace ui { | 14 namespace ui { |
| 15 class SlideAnimation; | 15 class SlideAnimation; |
| 16 } | 16 } |
| 17 namespace views { | 17 namespace views { |
| 18 class View; | 18 class View; |
| 19 class Widget; | 19 class Widget; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // Animation controlling sliding into/out of the top of the screen. | 57 // Animation controlling sliding into/out of the top of the screen. |
| 58 scoped_ptr<ui::SlideAnimation> size_animation_; | 58 scoped_ptr<ui::SlideAnimation> size_animation_; |
| 59 | 59 |
| 60 // The contents of the popup. | 60 // The contents of the popup. |
| 61 FullscreenExitView* view_; | 61 FullscreenExitView* view_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubbleViews); | 63 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubbleViews); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 #endif // CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_ | 66 #endif // CHROME_BROWSER_UI_VIEWS_FULLSCREEN_EXIT_BUBBLE_VIEWS_H_ |
| OLD | NEW |