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

Unified Diff: chrome/browser/ui/cocoa/browser_window_controller.h

Issue 7740044: Implement fullscreen info bubble on Win and Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to commens 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/cocoa/browser_window_controller.h
diff --git a/chrome/browser/ui/cocoa/browser_window_controller.h b/chrome/browser/ui/cocoa/browser_window_controller.h
index fa2bd91a99d888a354ebebdbb2ef32c821d9a177..f2b288c7da36f5e4cb3c5f431c23c2cffb74dcfb 100644
--- a/chrome/browser/ui/cocoa/browser_window_controller.h
+++ b/chrome/browser/ui/cocoa/browser_window_controller.h
@@ -361,7 +361,9 @@ class TabContents;
// Enters (or exits) fullscreen mode. This method is safe to call on all OS
// versions.
-- (void)setFullscreen:(BOOL)fullscreen;
+- (void)setFullscreen:(BOOL)fullscreen
+ forURL:(const GURL&)url
+ askPermission:(BOOL)ask_permission;
Nico 2011/10/12 16:23:09 interCaps in objc code
jeremya 2011/10/13 05:16:54 Done.
// Returns fullscreen state. This method is safe to call on all OS versions.
- (BOOL)isFullscreen;
@@ -374,7 +376,9 @@ class TabContents;
// Enters (or exits) presentation mode. Also enters fullscreen mode if this
// window is not already fullscreen. This method is safe to call on all OS
// versions.
-- (void)setPresentationMode:(BOOL)presentationMode;
+- (void)setPresentationMode:(BOOL)presentationMode
+ url:(const GURL&)url
+ askPermission:(BOOL)ask_permission;
Nico 2011/10/12 16:23:09 same
jeremya 2011/10/13 05:16:54 Done.
// Returns presentation mode state. This method is safe to call on all OS
// versions.

Powered by Google App Engine
This is Rietveld 408576698