Chromium Code Reviews| 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..f2c63cf6ce16e1951758e3c481f3a9f3b7d42091 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)askPermission; |
| // 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 |
|
Nico
2011/10/13 05:24:10
why forURL: above and url: here? Use url: above to
koz (OOO until 15th September)
2011/10/13 06:09:43
Done.
|
| + askPermission:(BOOL)askPermission; |
| // Returns presentation mode state. This method is safe to call on all OS |
| // versions. |