Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5293)

Unified Diff: chrome/browser/ui/gtk/fullscreen_exit_bubble_gtk.h

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows compile fix Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698