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_FULLSCREEN_EXIT_BUBBLE_H_ | 5 #ifndef CHROME_BROWSER_UI_FULLSCREEN_EXIT_BUBBLE_H_ |
6 #define CHROME_BROWSER_UI_FULLSCREEN_EXIT_BUBBLE_H_ | 6 #define CHROME_BROWSER_UI_FULLSCREEN_EXIT_BUBBLE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "base/timer.h" | 9 #include "base/timer.h" |
11 #include "chrome/browser/command_updater.h" | 10 #include "chrome/browser/command_updater.h" |
12 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 11 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" |
13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
14 #include "ui/base/animation/animation_delegate.h" | 13 #include "ui/base/animation/animation_delegate.h" |
15 #include "ui/gfx/point.h" | 14 #include "ui/gfx/point.h" |
16 | 15 |
17 class Browser; | 16 class Browser; |
18 | 17 |
19 namespace gfx { | 18 namespace gfx { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 100 |
102 protected: | 101 protected: |
103 // The host the bubble is for, can be empty. | 102 // The host the bubble is for, can be empty. |
104 GURL url_; | 103 GURL url_; |
105 | 104 |
106 // The type of the bubble; controls e.g. which buttons to show. | 105 // The type of the bubble; controls e.g. which buttons to show. |
107 FullscreenExitBubbleType bubble_type_; | 106 FullscreenExitBubbleType bubble_type_; |
108 }; | 107 }; |
109 | 108 |
110 #endif // CHROME_BROWSER_UI_FULLSCREEN_EXIT_BUBBLE_H_ | 109 #endif // CHROME_BROWSER_UI_FULLSCREEN_EXIT_BUBBLE_H_ |
OLD | NEW |