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

Unified Diff: chrome/browser/ui/panels/panel.h

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ups 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/panels/panel.h
diff --git a/chrome/browser/ui/panels/panel.h b/chrome/browser/ui/panels/panel.h
index 7c93a750e319466d79d926d999a469770149a605..ff8d7b88c55d2375c1ba7bb3b840747ab12a0543 100644
--- a/chrome/browser/ui/panels/panel.h
+++ b/chrome/browser/ui/panels/panel.h
@@ -85,7 +85,8 @@ class Panel : public BrowserWindow, public NotificationObserver {
virtual gfx::Rect GetBounds() const OVERRIDE;
virtual bool IsMaximized() const OVERRIDE;
virtual bool IsMinimized() const OVERRIDE;
- virtual void SetFullscreen(bool fullscreen) OVERRIDE;
+ virtual void SetFullscreen(bool fullscreen, const GURL& url,
Peter Kasting 2011/10/11 23:08:32 Nit: One arg per line, aligned
koz (OOO until 15th September) 2011/10/12 05:38:23 Done.
+ bool ask_permission) OVERRIDE;
virtual bool IsFullscreen() const OVERRIDE;
virtual bool IsFullscreenBubbleVisible() const OVERRIDE;
virtual LocationBar* GetLocationBar() const OVERRIDE;
@@ -144,7 +145,9 @@ class Panel : public BrowserWindow, public NotificationObserver {
virtual void Paste() OVERRIDE;
#if defined(OS_MACOSX)
virtual void OpenTabpose() OVERRIDE;
- virtual void SetPresentationMode(bool presentation_mode) OVERRIDE;
+ virtual void SetPresentationMode(bool presentation_mode,
+ const GURL& url,
+ bool ask_permission) OVERRIDE;
virtual bool InPresentationMode() OVERRIDE;
#endif
virtual void PrepareForInstant() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698