| Index: chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h
|
| diff --git a/chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h b/chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h
|
| index b8a4abba7a9b0412d6f1c345a86ae5373e899a69..b5f2543eb4dfc7b671fae113a82ba92072f91471 100644
|
| --- a/chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h
|
| +++ b/chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h
|
| @@ -21,7 +21,9 @@ class FullscreenExitBubbleGtk : public FullscreenExitBubble {
|
| // We place the bubble in |container|.
|
| FullscreenExitBubbleGtk(
|
| GtkFloatingContainer* container,
|
| - CommandUpdater::CommandUpdaterDelegate* delegate);
|
| + Browser* delegate,
|
| + const GURL& url,
|
| + bool ask_permission);
|
| virtual ~FullscreenExitBubbleGtk();
|
|
|
| protected:
|
| @@ -58,6 +60,9 @@ class FullscreenExitBubbleGtk : public FullscreenExitBubble {
|
| base::OneShotTimer<FullscreenExitBubbleGtk> initial_delay_;
|
|
|
| ui::GtkSignalRegistrar signals_;
|
| +
|
| + const GURL& url_;
|
| + bool show_buttons_;
|
| };
|
|
|
| #endif // CHROME_BROWSER_UI_GTK_FULLSCREEN_EXIT_BUBBLE_GTK_H_
|
|
|