| 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..8894a93be4213532a9307e3c8e0de7cf5bbb7c41 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,
|
| - CommandUpdater::CommandUpdaterDelegate* delegate);
|
| + Browser* browser,
|
| + const GURL& url,
|
| + bool show_buttons);
|
| virtual ~FullscreenExitBubbleViews();
|
|
|
| + void OnAcceptFullscreen();
|
| + void OnCancelFullscreen();
|
| protected:
|
| // 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);
|
| };
|
|
|
|
|