| 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..161f2ca3bea0f90c1aa17385424bb746c62bf536 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 {
|
| @@ -22,11 +23,15 @@ class Widget;
|
| class FullscreenExitBubbleViews : public views::LinkListener,
|
| public FullscreenExitBubble {
|
| public:
|
| - FullscreenExitBubbleViews(
|
| - views::Widget* frame,
|
| - CommandUpdater::CommandUpdaterDelegate* delegate);
|
| + FullscreenExitBubbleViews(views::Widget* frame,
|
| + Browser* browser,
|
| + const GURL& url,
|
| + bool ask_permission);
|
| 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);
|
| };
|
|
|
|
|