Chromium Code Reviews| Index: chrome/browser/ui/views/fullscreen_exit_bubble_views.h |
| diff --git a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h |
| index f561cf59f8c206d3c87c087bf6e218d6d56e5916..e9b87c4a6488d0aace80a1c9bd612f845a519ce3 100644 |
| --- a/chrome/browser/ui/views/fullscreen_exit_bubble_views.h |
| +++ b/chrome/browser/ui/views/fullscreen_exit_bubble_views.h |
| @@ -8,6 +8,7 @@ |
| #include "base/compiler_specific.h" |
| #include "chrome/browser/ui/fullscreen_exit_bubble.h" |
| +#include "googleurl/src/gurl.h" |
| #include "views/controls/link_listener.h" |
| namespace views { |
| @@ -24,9 +25,13 @@ class FullscreenExitBubbleViews : public views::LinkListener, |
| public: |
| FullscreenExitBubbleViews( |
| views::Widget* frame, |
|
Peter Kasting
2011/10/11 23:08:32
Nit: Move this up to the previous line and align o
koz (OOO until 15th September)
2011/10/12 05:38:23
Done.
|
| - CommandUpdater::CommandUpdaterDelegate* delegate); |
| + Browser* browser, |
| + const GURL& url, |
| + bool ask_permission); |
| virtual ~FullscreenExitBubbleViews(); |
| + void OnAcceptFullscreen(); |
| + void OnCancelFullscreen(); |
| protected: |
|
Peter Kasting
2011/10/11 23:08:32
Nit: Blank line above protected:
koz (OOO until 15th September)
2011/10/12 05:38:23
Done.
|
| // FullScreenExitBubble |
| virtual gfx::Rect GetPopupRect(bool ignore_animation_state) const OVERRIDE; |
| @@ -58,6 +63,8 @@ class FullscreenExitBubbleViews : public views::LinkListener, |
| // The contents of the popup. |
| FullscreenExitView* view_; |
| + const GURL& url_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubbleViews); |
| }; |